Auth system

This commit is contained in:
MrFry 2020-04-03 08:54:48 +02:00
parent 52778532dc
commit 9435cc6533
14 changed files with 637 additions and 23 deletions

View file

@ -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"
}
}
}
}