prisma fix

This commit is contained in:
jason
2026-03-12 17:30:36 -05:00
parent 4982e5392e
commit 2743b6ddf1
4 changed files with 5 additions and 9 deletions

View File

@@ -1,14 +1,9 @@
// This file was generated by Prisma, and assumes you have installed the following:
// npm install --save-dev prisma dotenv
import "dotenv/config";
import { defineConfig } from "prisma/config";
export default defineConfig({
schema: "prisma/schema.prisma",
migrations: {
path: "prisma/migrations",
},
datasource: {
url: process.env["DATABASE_URL"],
url: process.env.DATABASE_URL || "file:./dev.db",
},
});