Files
vfxreview/prisma/migrations/20260708000000_add_display_events/migration.sql
T
twotalesanimation afcef02409
Deploy / deploy (push) Successful in 3m3s
API Updates
2026-07-08 14:38:56 +02:00

14 lines
372 B
SQL

-- CreateTable
CREATE TABLE "display_events" (
"id" SERIAL NOT NULL,
"type" TEXT NOT NULL,
"shotCode" TEXT NOT NULL,
"by" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "display_events_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE INDEX "display_events_createdAt_idx" ON "display_events"("createdAt");