0053_auth_domain.sql3 lines · main
1-- Add auth_domain column to projects for fast custom-auth-subdomain lookup
2ALTER TABLE "projects" ADD COLUMN IF NOT EXISTS "auth_domain" text;
3CREATE UNIQUE INDEX IF NOT EXISTS "projects_auth_domain_idx" ON "projects"("auth_domain");