Files
documenso/apps/web/prisma/migrations/20221115095021_user_model/migration.sql
Timur Ercan ffebefbcd0 structure
2022-11-24 20:30:22 +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")
);