Updated db schema

This commit is contained in:
r-freeman 2023-04-03 23:39:23 +01:00
parent aebee71e18
commit 1fabd19a53

View File

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