You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
275 B
4 lines
275 B
2 years ago
|
-- 巡检计划添加消息模板字段
|
||
|
alter table `hz_st_re_plan` add column `message_template_id` bigint(20) comment '消息模板ID';
|
||
|
-- 巡检任务添加消息模板字段
|
||
|
alter table `hz_st_ex_task` add column `message_template_id` bigint(20) comment '消息模板ID';
|