diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 73d5dd9..5489f4d 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -3,9 +3,9 @@ generator client { } datasource db { - provider = "mysql" - url = env("PRISMA_URL") - relationMode = "prisma" + provider = "postgresql" + url = env("DATABASE_URL") + directUrl = env("DIRECT_URL") } model Maintenance { diff --git a/src/components/Background.vue b/src/components/Background.vue index 22e8ecb..1fc39c4 100644 --- a/src/components/Background.vue +++ b/src/components/Background.vue @@ -1,5 +1,5 @@