Shoot sketches templates
Deploy / deploy (push) Failing after 44s

This commit is contained in:
twotalesanimation
2026-07-12 12:27:21 +02:00
parent 4ae14cf8b2
commit 2f91c71307
7 changed files with 876 additions and 7 deletions
@@ -0,0 +1,13 @@
-- CreateTable
CREATE TABLE "sketch_templates" (
"id" TEXT NOT NULL,
"name" TEXT NOT NULL,
"fileUrl" TEXT NOT NULL,
"fileKey" TEXT NOT NULL DEFAULT '',
"fileName" TEXT NOT NULL DEFAULT '',
"fileSize" BIGINT,
"sortOrder" INTEGER NOT NULL DEFAULT 0,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "sketch_templates_pkey" PRIMARY KEY ("id")
);