cloudaxe-opencode/cloud/core/migrations/0001_thankful_chat.sql

8 lines
282 B
MySQL
Raw Normal View History

2025-08-08 17:22:54 +00:00
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");