first commit

This commit is contained in:
qwer-xyz
2026-06-20 14:22:31 +08:00
commit c2498911ab
793 changed files with 291660 additions and 0 deletions
@@ -0,0 +1,10 @@
ALTER TABLE "hosting_zones"
RENAME COLUMN "logo_data_url" TO "logo_url";
UPDATE "hosting_zones"
SET "logo_url" = 'https://example.com/hosting-zone-logo-migration-required.png'
WHERE "logo_url" !~* '^https?://';
ALTER TABLE "hosting_zones"
ADD CONSTRAINT "hosting_zones_logo_url_http_check"
CHECK ("logo_url" ~* '^https?://[^[:space:]]+$');