feat: add logo_url column to organizations table

This commit is contained in:
Arthur Belleville 2026-04-02 21:52:45 +02:00
parent 6ec82443f7
commit a7ef31163f
No known key found for this signature in database

View file

@ -0,0 +1,5 @@
-- Add logo_url to organizations for storing the R2 base path to org icon variants
ALTER TABLE public.organizations ADD COLUMN logo_url text;
-- Add comment for clarity
COMMENT ON COLUMN public.organizations.logo_url IS 'R2 base path for org icon variants (e.g. org-icons/42/). NULL means default XTablo icons.';