mirror of
https://github.com/documenso/documenso.git
synced 2025-11-17 02:01:33 +10:00
prisma and user model
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
-- CreateTable
|
||||
CREATE TABLE "user" (
|
||||
"id" SERIAL NOT NULL,
|
||||
"email" TEXT NOT NULL,
|
||||
"password" TEXT NOT NULL,
|
||||
|
||||
CONSTRAINT "user_pkey" PRIMARY KEY ("id")
|
||||
);
|
||||
Reference in New Issue
Block a user