feat: initialize prisma with Stock model

This commit is contained in:
2026-05-14 09:55:24 +02:00
parent 0fdd8432a0
commit f40eec1420
5 changed files with 44 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
// 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: "file:./prisma/dev.db",
},
});