a tool for shared writing and social publishing
1alter table "public"."custom_domains" add column "identity_id" uuid;
2
3alter table "public"."custom_domains" add constraint "custom_domains_identity_id_fkey" FOREIGN KEY (identity_id) REFERENCES identities(id) ON DELETE CASCADE not valid;
4
5alter table "public"."custom_domains" validate constraint "custom_domains_identity_id_fkey";