Updated db schema

This commit is contained in:
r-freeman 2023-04-03 23:15:21 +01:00
parent 3772b12b14
commit aebee71e18

View File

@ -13,10 +13,11 @@ datasource db {
schemas = ["public", "auth"] schemas = ["public", "auth"]
} }
model Views { model View {
slug String @id slug String @id
count BigInt @default(1) count BigInt @default(1)
@@schema("public") @@schema("public")
@@map("Views")
} }
model Account { model Account {