a tool for shared writing and social publishing

add migration to domain tables

+4
+4
supabase/migrations/20250521182744_modify_custom_domain_relations.sql
··· 1 + alter table "public"."custom_domains" alter column "identity" drop not null; 2 + alter table "public"."publication_domains" add column "identity" text not null; 3 + alter table "public"."publication_domains" add constraint "publication_domains_identity_fkey" FOREIGN KEY (identity) REFERENCES identities(atp_did) ON UPDATE CASCADE ON DELETE CASCADE not valid; 4 + alter table "public"."publication_domains" validate constraint "publication_domains_identity_fkey";