Add DB Seed to Prisma

This commit is contained in:
Michael Dausmann
2023-04-02 18:50:21 +10:00
parent 8fc900fbf1
commit 10b0d6da3d
5 changed files with 341 additions and 29 deletions

View File

@@ -60,7 +60,7 @@ model Account {
model Plan {
id Int @id @default(autoincrement())
name String
name String @unique
features String[]
accounts Account[]
max_notes Int @default(100)