refactor: switch to postgres instead of sqlite

This commit is contained in:
Andrea 2023-03-02 09:18:58 +01:00
parent fc2bc5d1b7
commit 5aa92be838
No known key found for this signature in database
GPG Key ID: 4594610B9C8F91C5

View File

@ -1,12 +1,9 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "sqlite"
provider = "postgresql"
url = env("DATABASE_URL")
}