From aebee71e181c7e7d50d70f06f7d2e310b863d86d Mon Sep 17 00:00:00 2001 From: r-freeman Date: Mon, 3 Apr 2023 23:15:21 +0100 Subject: [PATCH] Updated db schema --- prisma/schema.prisma | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 6e03a98..41bf010 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -13,10 +13,11 @@ datasource db { schemas = ["public", "auth"] } -model Views { +model View { slug String @id count BigInt @default(1) @@schema("public") + @@map("Views") } model Account {