← back to NationalPaperHangers
db/migrations/007_portfolio_detail_shots.sql
17 lines
-- 007 · "In the Seams" portfolio — detail-shot URLs (UX idea #1)
--
-- Generic directories show hero shots. In luxury wallcovering the seam,
-- corner, and ceiling-line is where craft is visible. These columns let
-- studios surface those detail shots in tabbed gallery viewers.
--
-- All optional — empty tabs hide gracefully.
BEGIN;
ALTER TABLE installer_portfolio
ADD COLUMN IF NOT EXISTS detail_seam_url TEXT,
ADD COLUMN IF NOT EXISTS detail_corner_url TEXT,
ADD COLUMN IF NOT EXISTS detail_ceiling_url TEXT;
COMMIT;