assetflow/prisma/schema.prisma

114 lines
2.8 KiB
Plaintext
Raw Permalink Normal View History

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
}
2023-05-06 20:30:32 +02:00
// https://github.com/pantharshit00/prisma-docs-generator
generator docs {
provider = "node node_modules/prisma-docs-generator"
output = "../docs"
2023-05-06 20:30:32 +02:00
}
// https://github.com/notiz-dev/prisma-dbml-generator
// Viewer: https://dbdiagram.io/d
generator dbml {
provider = "prisma-dbml-generator"
output = "../docs"
outputName = "schema.dbml"
projectName = "AssetFlow"
}
2023-05-15 00:21:53 +02:00
enum itemStatus {
normal
borrowed
stolen
lost
}
// comments and descriptions -> @db.VarChar(2048)
model Item {
2023-05-15 00:21:53 +02:00
id Int @id @unique @default(autoincrement())
SKU String? @unique
amount Int @default(1)
name String
comment String? @db.VarChar(2048)
2023-05-15 00:21:53 +02:00
status itemStatus @default(normal) /// TODO: Would it be better to create a separate model for this as well instead of providing several static statuses to choose from(enum)?
contactInfo contactInfo? @relation(fields: [contactInfoId], references: [id])
2023-05-21 01:53:52 +02:00
contactInfoId Int?
manufacturer String?
category itemCategory? @relation(fields: [categoryId], references: [id])
categoryId Int?
2023-05-21 01:53:52 +02:00
contents Item[] @relation("items") /// Item beinhaltet..
baseItem Item[] @relation("items") /// Item zugehörig zu.
storageLocation StorageLocation? @relation(fields: [storageLocationId], references: [id])
storageLocationId Int?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
createdBy String?
}
model StorageLocation {
id Int @id @default(autoincrement())
name String @unique /// This is our LocationID for external use prefixed with: '%StorageUnit%_'
storageUnit StorageUnit? @relation(fields: [storageUnitId], references: [id])
storageUnitId Int?
Item Item[]
}
/// A StorageUnit is the base and can hold multiple StorageLocations.
model StorageUnit {
2023-05-15 00:21:53 +02:00
id Int @id @default(autoincrement())
name String @unique
2023-05-15 00:21:53 +02:00
contactInfo contactInfo @relation(fields: [contactInfoId], references: [id])
contactInfoId Int
2023-05-15 00:21:53 +02:00
StorageLocation StorageLocation[]
}
2023-05-15 00:21:53 +02:00
model itemCategory {
id Int @id @default(autoincrement())
name String @unique
description String? @db.VarChar(2048)
Item Item[]
}
2023-05-15 00:21:53 +02:00
model contactInfo {
id Int @id @default(autoincrement())
type contactType @default(person)
name String?
lastName String?
street String
houseNumber String
zipCode String
city String
country String
2023-05-15 00:21:53 +02:00
StorageUnit StorageUnit[]
2023-05-21 01:53:52 +02:00
Item Item[]
}
2023-05-22 18:39:47 +02:00
/// TODO: Allow multiple types to be used?
2023-05-15 00:21:53 +02:00
enum contactType {
storageUnit
2023-05-21 01:53:52 +02:00
owner
person
customer
company
2023-05-15 00:21:53 +02:00
partner
enemy
}