Files
youtube-studio-flow/backend/prisma/migrations/20260629000000_add_conflict_detection_settings/migration.sql
T

9 lines
344 B
SQL

ALTER TABLE "Team"
ADD COLUMN "conflictDetectionEnabled" BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN "conflictDetectionBatchSize" INTEGER NOT NULL DEFAULT 50,
ADD COLUMN "conflictDetectionMinAgeDays" INTEGER NOT NULL DEFAULT 7;
ALTER TABLE "Video"
ADD COLUMN "pendingRemoteSnapshot" JSONB,
ADD COLUMN "pendingRemoteDescription" TEXT;