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
+16
View File
@@ -0,0 +1,16 @@
generator client {
provider = "prisma-client-js"
output = "../node_modules/.prisma/client"
}
datasource db {
provider = "sqlite"
}
model Stock {
id String @id @default(cuid())
ticker String @unique
notes String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}