0f952d6c1b
Four domain-model changes driven by exercising the deployed 2.0 build: - EOL moves from manufacturer to MPN via new PartModel catalog table, so alerts fire on the thing that actually ages. - Repairs re-home to Host (required hostId + problem text) with an optional RepairJobPart join for affected parts; drop Part.replacementPartId. - New /repairs/:id detail page with editable problem, part list, and a RepairComment thread (REPAIR_COMMENTED events fan out to each problem part's timeline). - Host.assetId (required, unique) surfaces prominently on the repair page so techs can confirm they're touching the right box. Single destructive migration reshapes existing dev data. All 7 packages typecheck clean; 30 API tests pass (9 new covering host membership, upsertByMpn idempotency + race, assetId 409, comment userId stamping). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
285 lines
8.4 KiB
Plaintext
285 lines
8.4 KiB
Plaintext
// NOTE: provider is temporarily set to "sqlite" for Phase 1 local verification.
|
|
// Flip to "postgresql" once Docker + docker-compose Postgres is available.
|
|
// All cascade rules and indexes below are portable between providers.
|
|
//
|
|
// Postgres-only additions applied post-cutover (see packages/db/POSTGRES_FTS.md):
|
|
// * Generated tsvector column on Part(serial, mpn, notes) + GIN index (Phase 3 scope).
|
|
// * WebhookSubscription.events and SavedView.filterJson currently stored as String (JSON
|
|
// text) for SQLite portability; on Postgres these become String[] and Jsonb respectively.
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "sqlite"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model User {
|
|
id String @id @default(uuid())
|
|
username String @unique
|
|
email String @unique
|
|
passwordHash String
|
|
role String @default("TECHNICIAN")
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
partEvents PartEvent[]
|
|
refreshTokens RefreshToken[]
|
|
repairAssignments RepairJob[] @relation("RepairAssignee")
|
|
repairComments RepairComment[]
|
|
savedViews SavedView[]
|
|
csvImportJobs CsvImportJob[]
|
|
}
|
|
|
|
model RefreshToken {
|
|
id String @id @default(uuid())
|
|
userId String
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
tokenHash String @unique
|
|
expiresAt DateTime
|
|
revokedAt DateTime?
|
|
replacedBy String?
|
|
createdAt DateTime @default(now())
|
|
|
|
@@index([userId])
|
|
@@index([expiresAt])
|
|
}
|
|
|
|
model Manufacturer {
|
|
id String @id @default(uuid())
|
|
name String @unique
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
parts Part[]
|
|
partModels PartModel[]
|
|
}
|
|
|
|
model PartModel {
|
|
id String @id @default(uuid())
|
|
manufacturerId String
|
|
manufacturer Manufacturer @relation(fields: [manufacturerId], references: [id], onDelete: Restrict)
|
|
mpn String
|
|
eolDate DateTime?
|
|
notes String?
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
parts Part[]
|
|
|
|
@@unique([manufacturerId, mpn])
|
|
@@index([manufacturerId])
|
|
@@index([eolDate])
|
|
}
|
|
|
|
model Site {
|
|
id String @id @default(uuid())
|
|
name String @unique
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
rooms Room[]
|
|
}
|
|
|
|
model Room {
|
|
id String @id @default(uuid())
|
|
name String
|
|
siteId String
|
|
site Site @relation(fields: [siteId], references: [id], onDelete: Cascade)
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
bins Bin[]
|
|
|
|
@@unique([siteId, name])
|
|
@@index([siteId])
|
|
}
|
|
|
|
model Bin {
|
|
id String @id @default(uuid())
|
|
name String
|
|
roomId String
|
|
room Room @relation(fields: [roomId], references: [id], onDelete: Cascade)
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
parts Part[]
|
|
|
|
@@unique([roomId, name])
|
|
@@index([roomId])
|
|
}
|
|
|
|
model Category {
|
|
id String @id @default(uuid())
|
|
name String @unique
|
|
description String?
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
parts Part[]
|
|
}
|
|
|
|
model Part {
|
|
id String @id @default(uuid())
|
|
serialNumber String @unique
|
|
partModelId String
|
|
partModel PartModel @relation(fields: [partModelId], references: [id], onDelete: Restrict)
|
|
manufacturerId String
|
|
manufacturer Manufacturer @relation(fields: [manufacturerId], references: [id], onDelete: Restrict)
|
|
price Float?
|
|
state String @default("SPARE")
|
|
binId String?
|
|
bin Bin? @relation(fields: [binId], references: [id], onDelete: SetNull)
|
|
categoryId String?
|
|
category Category? @relation(fields: [categoryId], references: [id], onDelete: SetNull)
|
|
hostId String?
|
|
host Host? @relation(fields: [hostId], references: [id], onDelete: SetNull)
|
|
notes String?
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
events PartEvent[]
|
|
tags PartTag[]
|
|
problemInRepairs RepairJobPart[]
|
|
|
|
@@index([state])
|
|
@@index([binId])
|
|
@@index([manufacturerId])
|
|
@@index([partModelId])
|
|
@@index([categoryId])
|
|
@@index([hostId])
|
|
}
|
|
|
|
model PartEvent {
|
|
id String @id @default(uuid())
|
|
partId String
|
|
part Part @relation(fields: [partId], references: [id], onDelete: Cascade)
|
|
userId String?
|
|
user User? @relation(fields: [userId], references: [id], onDelete: SetNull)
|
|
type String
|
|
field String?
|
|
oldValue String?
|
|
newValue String?
|
|
createdAt DateTime @default(now())
|
|
|
|
@@index([partId, createdAt(sort: Desc)])
|
|
@@index([userId])
|
|
}
|
|
|
|
model Tag {
|
|
id String @id @default(uuid())
|
|
name String @unique
|
|
color String?
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
parts PartTag[]
|
|
}
|
|
|
|
model PartTag {
|
|
partId String
|
|
tagId String
|
|
part Part @relation(fields: [partId], references: [id], onDelete: Cascade)
|
|
tag Tag @relation(fields: [tagId], references: [id], onDelete: Cascade)
|
|
createdAt DateTime @default(now())
|
|
|
|
@@id([partId, tagId])
|
|
@@index([tagId])
|
|
}
|
|
|
|
model Host {
|
|
id String @id @default(uuid())
|
|
assetId String @unique
|
|
name String @unique
|
|
location String?
|
|
notes String?
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
parts Part[]
|
|
repairs RepairJob[]
|
|
}
|
|
|
|
model RepairJob {
|
|
id String @id @default(uuid())
|
|
hostId String
|
|
host Host @relation(fields: [hostId], references: [id], onDelete: Restrict)
|
|
assigneeId String?
|
|
assignee User? @relation("RepairAssignee", fields: [assigneeId], references: [id], onDelete: SetNull)
|
|
status String @default("PENDING")
|
|
problem String
|
|
openedAt DateTime @default(now())
|
|
closedAt DateTime?
|
|
notes String?
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
problemParts RepairJobPart[]
|
|
comments RepairComment[]
|
|
|
|
@@index([status])
|
|
@@index([hostId])
|
|
@@index([assigneeId])
|
|
@@index([status, openedAt(sort: Desc)])
|
|
}
|
|
|
|
model RepairJobPart {
|
|
repairJobId String
|
|
partId String
|
|
repairJob RepairJob @relation(fields: [repairJobId], references: [id], onDelete: Cascade)
|
|
part Part @relation(fields: [partId], references: [id], onDelete: Restrict)
|
|
createdAt DateTime @default(now())
|
|
|
|
@@id([repairJobId, partId])
|
|
@@index([partId])
|
|
}
|
|
|
|
model RepairComment {
|
|
id String @id @default(uuid())
|
|
repairJobId String
|
|
repairJob RepairJob @relation(fields: [repairJobId], references: [id], onDelete: Cascade)
|
|
userId String?
|
|
user User? @relation(fields: [userId], references: [id], onDelete: SetNull)
|
|
content String
|
|
createdAt DateTime @default(now())
|
|
|
|
@@index([repairJobId, createdAt])
|
|
}
|
|
|
|
model WebhookSubscription {
|
|
id String @id @default(uuid())
|
|
url String
|
|
secret String
|
|
// JSON array of WebhookEventName values. Becomes String[] on Postgres cutover.
|
|
events String
|
|
active Boolean @default(true)
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
|
|
@@index([active])
|
|
}
|
|
|
|
model SavedView {
|
|
id String @id @default(uuid())
|
|
userId String
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
resource String
|
|
name String
|
|
// JSON blob describing filters/sort/columns. Becomes Jsonb on Postgres cutover.
|
|
filterJson String
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
|
|
@@unique([userId, resource, name])
|
|
@@index([userId])
|
|
}
|
|
|
|
model CsvImportJob {
|
|
id String @id @default(uuid())
|
|
userId String?
|
|
user User? @relation(fields: [userId], references: [id], onDelete: SetNull)
|
|
resource String
|
|
status String @default("PENDING")
|
|
filename String
|
|
stagedRows Int @default(0)
|
|
// JSON array of CsvImportRowError. Nullable until validation runs.
|
|
errors String?
|
|
startedAt DateTime?
|
|
finishedAt DateTime?
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
|
|
@@index([userId])
|
|
@@index([status])
|
|
}
|