Files
mira/backend/migrations/002_client_details.sql
Cauê Faleiros 8c7e5fbbe4
All checks were successful
CI / backend (push) Successful in 13m19s
CI / frontend (push) Successful in 11m3s
CI / docker (push) Successful in 1m58s
first commit
2026-06-03 16:31:42 -03:00

7 lines
333 B
SQL

ALTER TABLE clients
ADD COLUMN IF NOT EXISTS website_url TEXT NOT NULL DEFAULT '',
ADD COLUMN IF NOT EXISTS instagram_url TEXT NOT NULL DEFAULT '',
ADD COLUMN IF NOT EXISTS facebook_url TEXT NOT NULL DEFAULT '',
ADD COLUMN IF NOT EXISTS linkedin_url TEXT NOT NULL DEFAULT '',
ADD COLUMN IF NOT EXISTS notes TEXT NOT NULL DEFAULT '';