61 lines
1.4 KiB
Plaintext
61 lines
1.4 KiB
Plaintext
|
// 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")
|
||
|
}
|
||
|
|
||
|
enum Category {
|
||
|
Light
|
||
|
Audio
|
||
|
Laptop
|
||
|
Adapter
|
||
|
Other
|
||
|
}
|
||
|
|
||
|
enum Status {
|
||
|
normal
|
||
|
borrowed
|
||
|
stolen
|
||
|
lost
|
||
|
}
|
||
|
|
||
|
model Item {
|
||
|
id Int @id @default(autoincrement())
|
||
|
SKU String @unique
|
||
|
Amount Int
|
||
|
Comment String?
|
||
|
name String
|
||
|
manufacturer String
|
||
|
category Category
|
||
|
status Status
|
||
|
StorageLocation StorageLocation @relation(fields: [storageLocationId], references: [id])
|
||
|
storageLocationId Int
|
||
|
createdAt DateTime @default(now())
|
||
|
updatedAt DateTime @updatedAt
|
||
|
}
|
||
|
|
||
|
model StorageLocation {
|
||
|
id Int @id @default(autoincrement())
|
||
|
name String
|
||
|
storageBuilding StorageBuilding @relation(fields: [storageBuildingId], references: [id])
|
||
|
storageBuildingId Int
|
||
|
Item Item[]
|
||
|
}
|
||
|
|
||
|
model StorageBuilding {
|
||
|
id Int @id @default(autoincrement())
|
||
|
name String
|
||
|
street String
|
||
|
houseNumber String
|
||
|
zipCode String
|
||
|
city String
|
||
|
country String
|
||
|
StorageLocation StorageLocation[]
|
||
|
}
|