【7.2.5】更新菜单类型默认为系统类型

pull/84/head
fengshuonan 2022-09-28 11:31:12 +08:00
parent cd2d9d9a8f
commit c9e72f926e
1 changed files with 3 additions and 1 deletions

View File

@ -1 +1,3 @@
ALTER TABLE `sys_menu` ADD COLUMN `menu_biz_type` tinyint NULL COMMENT '菜单的业务类型1-系统类型2-业务类型' AFTER `remark`; ALTER TABLE `sys_menu` ADD COLUMN `menu_biz_type` tinyint(4) NULL DEFAULT 2 COMMENT '菜单的业务类型1-系统类型2-业务类型' AFTER `remark`;
UPDATE `sys_menu` SET menu_biz_type = 1;