Files
nrx.sh/prisma/migrations/20250407220501_add_clipboard/migration.sql

8 lines
152 B
MySQL
Raw Normal View History

2025-04-08 00:23:36 +02:00
-- CreateTable
CREATE TABLE "Clipboard" (
"id" SERIAL NOT NULL,
"content" TEXT NOT NULL,
CONSTRAINT "Clipboard_pkey" PRIMARY KEY ("id")
);