Files
backend/database/migrations/015_business_profile.sql
Ali Reza bb59d5e9ba Initial commit: Meshkee CMS API
NestJS backend with Prisma, Docker Compose for Postgres/Redis, and deploy docs for the production VM.
2026-07-21 17:52:36 +03:30

13 lines
540 B
SQL

-- Business profile fields for dashboard / public storefront
ALTER TABLE businesses
ADD COLUMN IF NOT EXISTS vision TEXT,
ADD COLUMN IF NOT EXISTS emails JSONB NOT NULL DEFAULT '[]'::jsonb,
ADD COLUMN IF NOT EXISTS phone_numbers JSONB NOT NULL DEFAULT '[]'::jsonb,
ADD COLUMN IF NOT EXISTS social_media JSONB NOT NULL DEFAULT '{}'::jsonb,
ADD COLUMN IF NOT EXISTS logo_media_id BIGINT;
ALTER TABLE businesses
ADD CONSTRAINT businesses_logo_media_id_fkey
FOREIGN KEY (logo_media_id) REFERENCES media (id) ON DELETE SET NULL;