Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ CREATE TABLE "Account" (
"scope" TEXT,
"id_token" TEXT,
"session_state" TEXT,
"refresh_token_expires_in" INTEGER,

CONSTRAINT "Account_pkey" PRIMARY KEY ("id")
);
Expand All @@ -47,7 +48,6 @@ CREATE TABLE "User" (
"emailVerified" TIMESTAMP(3),
"image" TEXT,
"role" TEXT NOT NULL DEFAULT 'NONE',
"isAdminApproved" BOOLEAN NOT NULL DEFAULT false,

CONSTRAINT "User_pkey" PRIMARY KEY ("id")
);
Expand Down
Loading