mrfrys-node-server/modules/api/apiDBStruct.json
2020-04-03 09:27:37 +02:00

38 lines
594 B
JSON

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