Files
lobehub/packages/database/migrations/0049_better_auth.sql
2025-11-27 20:10:40 +08:00

50 lines
1.7 KiB
SQL

CREATE TABLE IF NOT EXISTS "accounts" (
"access_token" text,
"access_token_expires_at" timestamp,
"account_id" text NOT NULL,
"created_at" timestamp DEFAULT now() NOT NULL,
"id" text PRIMARY KEY NOT NULL,
"id_token" text,
"password" text,
"provider_id" text NOT NULL,
"refresh_token" text,
"refresh_token_expires_at" timestamp,
"scope" text,
"updated_at" timestamp NOT NULL,
"user_id" text NOT NULL
);
--> statement-breakpoint
CREATE TABLE IF NOT EXISTS "auth_sessions" (
"created_at" timestamp DEFAULT now() NOT NULL,
"expires_at" timestamp NOT NULL,
"id" text PRIMARY KEY NOT NULL,
"ip_address" text,
"token" text NOT NULL,
"updated_at" timestamp NOT NULL,
"user_agent" text,
"user_id" text NOT NULL,
CONSTRAINT "auth_sessions_token_unique" UNIQUE("token")
);
--> statement-breakpoint
CREATE TABLE IF NOT EXISTS "verifications" (
"created_at" timestamp DEFAULT now() NOT NULL,
"expires_at" timestamp NOT NULL,
"id" text PRIMARY KEY NOT NULL,
"identifier" text NOT NULL,
"updated_at" timestamp DEFAULT now() NOT NULL,
"value" text NOT NULL
);
--> statement-breakpoint
ALTER TABLE "users" ADD COLUMN IF NOT EXISTS "email_verified" boolean DEFAULT false NOT NULL;--> statement-breakpoint
DO $$ BEGIN
ALTER TABLE "accounts" ADD CONSTRAINT "accounts_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;
EXCEPTION
WHEN duplicate_object THEN null;
END $$;
--> statement-breakpoint
DO $$ BEGIN
ALTER TABLE "auth_sessions" ADD CONSTRAINT "auth_sessions_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;
EXCEPTION
WHEN duplicate_object THEN null;
END $$;