Switch database from SQLite to PostgreSQL

Replace in-memory JSON file storage with Prisma ORM using PostgreSQL.
Update environment variables and Prisma schema accordingly.
This commit is contained in:
2026-05-19 14:19:01 +02:00
parent 06ab791755
commit 45cf61525e
10 changed files with 79 additions and 60 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ generator client {
}
datasource db {
provider = "sqlite"
provider = "postgresql"
url = env("DATABASE_URL")
}