Files
documenso/prisma/migrations/20221115095021_user_model/migration.sql
2022-11-15 10:53:04 +01:00

9 lines
170 B
SQL

-- CreateTable
CREATE TABLE "user" (
"id" SERIAL NOT NULL,
"email" TEXT NOT NULL,
"password" TEXT NOT NULL,
CONSTRAINT "user_pkey" PRIMARY KEY ("id")
);