-- ============================================ -- 为 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 '中文主题';