All checks were successful
Publish Docker Image / Publish Docker Image (push) Successful in 39s
8 lines
149 B
SQL
Executable File
8 lines
149 B
SQL
Executable File
-- CreateTable
|
|
CREATE TABLE "Portrait" (
|
|
"id" SERIAL NOT NULL,
|
|
"fileId" TEXT NOT NULL,
|
|
|
|
CONSTRAINT "Portrait_pkey" PRIMARY KEY ("id")
|
|
);
|