This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
Lateinicus/backend/db.md
2018-09-29 14:23:09 +02:00

24 lines
235 B
Markdown

# User
`column`: users
`
{
username: string,
salt: string,
hash: string,
uid: number,
showWelcome: boolean,
classId: string,
}
`
# Sessions
column: sessions
`
{
username: string,
session: string,
}
`