0001_thankful_chat.sql 282 B

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