versioning added
Deploy / deploy (push) Successful in 3m12s

This commit is contained in:
twotalesanimation
2026-06-25 22:19:22 +02:00
parent 935a293777
commit 75d5149bea
8 changed files with 172 additions and 3 deletions
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "shots" ADD COLUMN "shotVersion" TEXT NOT NULL DEFAULT 'v001';
+2
View File
@@ -309,6 +309,8 @@ model Shot {
// High-res deliverable (stored in Hetzner Object Storage)
highResKey String?
highResFilename String?
// Shot-level version tracking (e.g. v001, v002)
shotVersion String @default("v001")
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt