Files
ds-pages/prisma/migrations/20230314090553_dev/migration.sql
2023-03-16 11:56:41 +00:00

23 lines
465 B
SQL

/*
Warnings:
- You are about to drop the `paragraph` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
DROP TABLE "paragraph";
-- CreateTable
CREATE TABLE "Paragraph" (
"id" TEXT NOT NULL,
"author" TEXT NOT NULL,
"content" TEXT NOT NULL,
"cover" TEXT,
"markdown" BOOLEAN,
"tags" TEXT[],
"time" DATE NOT NULL,
"title" TEXT NOT NULL,
CONSTRAINT "Paragraph_pkey" PRIMARY KEY ("id")
);