All checks were successful
Publish Docker Image / Publish Docker Image (push) Successful in 39s
17 lines
327 B
SQL
Executable File
17 lines
327 B
SQL
Executable File
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the `Title` table. If the table is not empty, all the data it contains will be lost.
|
|
|
|
*/
|
|
-- DropTable
|
|
DROP TABLE "Title";
|
|
|
|
-- CreateTable
|
|
CREATE TABLE "Titles" (
|
|
"id" SERIAL NOT NULL,
|
|
"titles" TEXT[] DEFAULT ARRAY[]::TEXT[],
|
|
|
|
CONSTRAINT "Titles_pkey" PRIMARY KEY ("id")
|
|
);
|