8 lines
230 B
SQL
8 lines
230 B
SQL
CREATE TABLE "admins" (
|
|
"id" serial PRIMARY KEY NOT NULL,
|
|
"email" text NOT NULL,
|
|
"createdAt" timestamp DEFAULT now() NOT NULL,
|
|
"updatedAt" timestamp DEFAULT now() NOT NULL,
|
|
CONSTRAINT "admins_email_unique" UNIQUE("email")
|
|
);
|