topfans/backend/scripts/migrate_add_theme_to_activities.sql
2026-04-07 22:29:48 +08:00

11 lines
395 B
SQL

-- ============================================
-- 为 activities 表添加 theme (中文主题) 字段
-- ============================================
ALTER TABLE activities ADD COLUMN IF NOT EXISTS theme VARCHAR(100);
-- 为已有数据设置默认值(可选,如果需要)
-- UPDATE activities SET theme = '' WHERE theme IS NULL;
COMMENT ON COLUMN activities.theme IS '中文主题';