mrfrys-node-server/modules/api/apiDBStruct.json

35 lines
544 B
JSON

{
"users": {
"tableStruct": {
"pw": {
"type": "text",
"primary": true,
"notNull": true
},
"userID": {
"type": "number"
},
"lastIP": {
"type": "text"
},
"notes": {
"type": "text"
},
"loginCount": {
"type": "number"
}
}
},
"acesses": {
"tableStruct": {
"userID": {
"type": "number",
"primary": true,
"notNull": true
},
"ip": {
"type": "text"
}
}
}
}