@@ -0,0 +1,5 @@
|
||||
-- AlterTable: add Netflix slate fields to shots
|
||||
ALTER TABLE "shots" ADD COLUMN "slateType" TEXT;
|
||||
ALTER TABLE "shots" ADD COLUMN "slateDescription" TEXT;
|
||||
ALTER TABLE "shots" ADD COLUMN "slateVfxScope" TEXT;
|
||||
ALTER TABLE "shots" ADD COLUMN "slateSubmissionNote" TEXT;
|
||||
@@ -418,6 +418,11 @@ model Shot {
|
||||
shotVersion String @default("v001")
|
||||
// Key shot flag — highlighted for prioritisation
|
||||
isKeyShot Boolean @default(false)
|
||||
// Netflix slate fields — managed via the Slate tab, used by the preview pipeline
|
||||
slateType String?
|
||||
slateDescription String? @db.Text
|
||||
slateVfxScope String? @db.Text
|
||||
slateSubmissionNote String? @db.Text
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
|
||||
|
||||
Reference in New Issue
Block a user