Files
zpan/migrations/0079_image-domain-providers.sql
T
Jasper Van 1d58d5b80d feat(image-hosting): add configurable custom domain providers (#529)
* feat(image-hosting): add custom domain providers

* test(image-hosting): cover custom domain provider flows
2026-07-27 22:52:18 -04:00

6 lines
541 B
SQL

ALTER TABLE `image_hosting_configs` RENAME COLUMN "cf_hostname_id" TO "provider_hostname_id";--> statement-breakpoint
ALTER TABLE `image_hosting_configs` ADD `domain_provider` text;--> statement-breakpoint
ALTER TABLE `image_hosting_configs` ADD `domain_status` text;--> statement-breakpoint
ALTER TABLE `image_hosting_configs` ADD `domain_error` text;--> statement-breakpoint
ALTER TABLE `image_hosting_configs` ADD `verification_token` text;--> statement-breakpoint
ALTER TABLE `image_hosting_configs` ADD `domain_last_checked_at` integer;