CSV shot implementation
Deploy / deploy (push) Failing after 46s

This commit is contained in:
twotalesanimation
2026-06-12 15:06:50 +02:00
parent 450f969007
commit 4da80d29a9
8 changed files with 637 additions and 4 deletions
@@ -0,0 +1,6 @@
-- AlterTable
ALTER TABLE "shots" ADD COLUMN "sourceClip" TEXT;
ALTER TABLE "shots" ADD COLUMN "timecodeStart" TEXT;
ALTER TABLE "shots" ADD COLUMN "timecodeEnd" TEXT;
ALTER TABLE "shots" ADD COLUMN "clipDuration" TEXT;
ALTER TABLE "shots" ADD COLUMN "exrOutput" TEXT;
+6
View File
@@ -297,6 +297,12 @@ model Shot {
shotGroupId String?
shotApprovalStatus ShotApprovalStatus @default(PENDING)
sharedWithClient Boolean @default(false)
// EDL / pull CSV fields
sourceClip String?
timecodeStart String?
timecodeEnd String?
clipDuration String?
exrOutput String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt