All pages now in Nuxt, work next on nav.
DB connected, check issues with writing. Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
parent
f9e7e5480c
commit
14659122c3
17 changed files with 375 additions and 56 deletions
|
|
@ -49,3 +49,14 @@ model sites {
|
|||
site_url String @db.VarChar
|
||||
pages pages[]
|
||||
}
|
||||
|
||||
model user {
|
||||
id String @id @default(uuid())
|
||||
name String
|
||||
discord_id String @unique
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
is_admin Boolean @default(false)
|
||||
is_staff Boolean @default(false)
|
||||
is_member Boolean @default(false)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue