7 lines
271 B
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;
|