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
Alexander Polynomdivision fdaa9cb8f3 feat: Remove shared/
2018-09-29 15:06:14 +02:00

30 lines
329 B
Markdown

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