docs(db): 마이그레이션 파일명 날짜 형식 통일 및 marketing 공식 링크 컬럼 추가

This commit is contained in:
김성경 2026-08-24 14:46:12 +09:00
parent 6d46614dcd
commit b3385e7df2
5 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
-- ============================================================
-- Migration: marketing 테이블에 official_site_url 컬럼 추가
-- Date: 2026-08-24
-- Description: 업체 공식 링크. 영상 종료 직전 오버레이·응답의 official_site_url 용도.
-- 관련 코드: app/home/models.py(MarketingIntel), app/home/api/routers/v1/home.py,
-- app/video/api/routers/v1/video.py(_get_official_site_urls)
-- ============================================================
ALTER TABLE `marketing`
ADD COLUMN `official_site_url` VARCHAR(2048) NULL
COMMENT '업체 공식 링크' AFTER `place_id`;