blob: 9c66a6ac4fce66f17454f6ed3e43dacef05c3f8f (
plain)
1
2
3
4
5
6
7
8
|
CREATE TABLE "account" (
"id" varchar(30) NOT NULL,
"time_created" timestamp with time zone DEFAULT now() NOT NULL,
"time_deleted" timestamp with time zone,
"email" varchar(255) NOT NULL
);
--> statement-breakpoint
CREATE UNIQUE INDEX "email" ON "account" USING btree ("email");
|