Files
aggios.app/postgres/migrations/002_add_branding_columns.sql

7 lines
271 B
SQL

-- Add branding/customization columns to tenants table
ALTER TABLE tenants
ADD COLUMN IF NOT EXISTS primary_color VARCHAR(7),
ADD COLUMN IF NOT EXISTS secondary_color VARCHAR(7),
ADD COLUMN IF NOT EXISTS logo_url TEXT,
ADD COLUMN IF NOT EXISTS logo_horizontal_url TEXT;