Move to zenstack for table inheritance

This commit is contained in:
2024-05-01 21:04:35 +02:00
parent a69c70c9ef
commit 864086cb67
10 changed files with 1692 additions and 53 deletions
+112 -9
View File
@@ -1,17 +1,120 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
//////////////////////////////////////////////////////////////////////////////////////////////
// DO NOT MODIFY THIS FILE //
// This file is automatically generated by ZenStack CLI and should not be manually updated. //
//////////////////////////////////////////////////////////////////////////////////////////////
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
enum DrinkType {
Drink
Beer
Wine
Soda
}
enum ContainerType {
BeerBottle
WineBottle
PlasticBottle
Can
Carton
}
/// @@delegate(type)
/// @@allow('all', true)
model Drink {
id Int @id() @default(autoincrement())
slug String @unique()
manufacturer_id Int
manufacturer Manufacturer @relation(fields: [manufacturer_id], references: [id])
type DrinkType
name String @unique()
description String
abv Float
image String?
containers Container[]
delegate_aux_beer Beer?
delegate_aux_wine Wine?
delegate_aux_soda Soda?
}
/// @@allow('all', true)
/// @@allow('all', true)
model Beer {
id String @id @default(uuid())
name String @unique
abv Float
}
id Int @id()
style_id Int
style BeerStyle @relation(fields: [style_id], references: [id])
ibu Float?
delegate_aux_drink Drink @relation(fields: [id], references: [id], onDelete: Cascade, onUpdate: Cascade)
}
/// @@allow('all', true)
model BeerStyle {
id Int @id() @default(autoincrement())
name String @unique()
beers Beer[]
}
/// @@allow('all', true)
/// @@allow('all', true)
model Wine {
id Int @id()
style_id Int
style WineStyle @relation(fields: [style_id], references: [id])
heavy_score Int?
tannine_score Int?
dry_score Int?
fresh_score Int?
notes String?
delegate_aux_drink Drink @relation(fields: [id], references: [id], onDelete: Cascade, onUpdate: Cascade)
}
/// @@allow('all', true)
model WineStyle {
id Int @id() @default(autoincrement())
name String @unique()
wines Wine[]
}
/// @@allow('all', true)
/// @@allow('all', true)
model Soda {
id Int @id()
carbonated Boolean
delegate_aux_drink Drink @relation(fields: [id], references: [id], onDelete: Cascade, onUpdate: Cascade)
}
/// @@allow('all', true)
model Container {
barcode String @id()
drink_id Int
drink Drink @relation(fields: [drink_id], references: [id])
type ContainerType
volume Int
portions Int?
inventory Int @default(0)
}
/// @@allow('all', true)
model Manufacturer {
id Int @id() @default(autoincrement())
country_id String
country Country @relation(fields: [country_id], references: [code])
name String @unique()
image String?
drinks Drink[]
}
/// @@allow('all', true)
model Country {
code String @id()
name String
manufacturers Manufacturer[]
}