mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2026-04-28 11:17:38 +02:00
Auth system
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"users": {
|
||||
"tableStruct": {
|
||||
"userID": {
|
||||
"type": "number",
|
||||
"primary": true,
|
||||
"notNull": true
|
||||
},
|
||||
"pw": {
|
||||
"type": "text"
|
||||
},
|
||||
"lastIP": {
|
||||
"type": "text"
|
||||
},
|
||||
"notes": {
|
||||
"type": "text"
|
||||
},
|
||||
"loginCount": {
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
},
|
||||
"acesses": {
|
||||
"tableStruct": {
|
||||
"userID": {
|
||||
"type": "number",
|
||||
"primary": true,
|
||||
"notNull": true
|
||||
},
|
||||
"ip": {
|
||||
"type": "text"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user