mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-21 17:54:23 +01:00
8 lines
282 B
SQL
8 lines
282 B
SQL
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"); |