Files
nrx.sh/prisma/migrations/20250407220501_add_clipboard/migration.sql
Nareshkumar Rao edc575b153
All checks were successful
Build / build (push) Successful in 3m28s
add clipboard
2025-04-08 00:23:36 +02:00

8 lines
152 B
SQL

-- CreateTable
CREATE TABLE "Clipboard" (
"id" SERIAL NOT NULL,
"content" TEXT NOT NULL,
CONSTRAINT "Clipboard_pkey" PRIMARY KEY ("id")
);