master_sql.sql 426 B

123456789
  1. ALTER TABLE `message_template_event_group`
  2. ADD COLUMN `app_id` BIGINT(20) NULL
  3. COMMENT '所属应用 ID,对应 sys_app.id'
  4. AFTER `template_service_name`;
  5. -- arg_template_json
  6. ALTER TABLE `message_template_event_group`
  7. ADD COLUMN `arg_template_json` TEXT NULL
  8. COMMENT '模板变量 JSON,结构:[{"propertyName":"显示名","propertyKey":"${fieldName}$"}]'
  9. AFTER `notice_app_code`;