-- price_history 에 몰별 최저가 스냅샷(JSONB) 추가. -- lps 스키마는 SQLAlchemy create_all 이 단일 소스라, 신규 DB 는 모델로 자동 생성된다. -- 이 파일은 '이미 만들어진' dev/운영 DB 를 모델과 동기화하기 위한 것(인라인 즉석 ALTER 대신 추적 파일). -- psql -h 127.0.0.1 -U postgres -d lps_db -f migrations/2026-07-09-price_history-by_mall.sql ALTER TABLE price_history ADD COLUMN IF NOT EXISTS by_mall JSONB;