feat:枚举表增加sort排序字段

This commit is contained in:
曾文豪
2024-08-28 19:34:03 +08:00
parent 0b32559630
commit 55324199cd
5 changed files with 34 additions and 4 deletions

View File

@@ -33,4 +33,7 @@ CREATE TABLE `core_config_system`
) ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4 COMMENT ='配置-系统';
alter table core_config_enum
add sort int(10) not null default 0 comment '排序' after name;
SET FOREIGN_KEY_CHECKS = 1;