feat: add user management section

This commit is contained in:
Daniel Soares
2021-12-23 14:51:34 -03:00
parent f977de999d
commit 19aa8d2311
64 changed files with 1713 additions and 398 deletions

View File

@@ -16,6 +16,7 @@ model User {
id Int @id @default(autoincrement())
username String @unique
password String
lang String @default("en")
role Role
}