Files
localMiniDrama/backend-node/migrations/15_storyboard_angle_structured.sql
T
2026-06-30 15:07:31 +08:00

9 lines
531 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- storyboards 表新增结构化视角字段(三元组)
-- angle_h: 水平方向(front / front_left / left / back_left / back / back_right / right / front_right
-- angle_v: 俯仰角度(worm / low / eye_level / high
-- angle_s: 景别 close_up / medium / wide
-- 保留原 angle 字段(旧文本)以兼容存量数据,新数据优先使用三元组字段
ALTER TABLE storyboards ADD COLUMN angle_h TEXT;
ALTER TABLE storyboards ADD COLUMN angle_v TEXT;
ALTER TABLE storyboards ADD COLUMN angle_s TEXT;