mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
35 lines
544 B
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"
|
|
}
|
|
}
|
|
}
|
|
}
|