-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
37 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- OSS配置新增自动创建桶字段 update by 2023-07-05 | ||
ALTER TABLE sys_oss_config ADD (create_bucket number(1) default 0 not null); | ||
COMMENT ON COLUMN sys_oss_config.create_bucket IS '创建桶(1=是,0=否)'; | ||
|
||
-- 代码生成新增排序字段 update by 2023-07-07 | ||
ALTER TABLE gen_table_column ADD (is_sort char(1)); | ||
COMMENT ON COLUMN gen_table_column.is_sort IS '是否排序字段(1是)'; | ||
-- 新增部门、菜单导出 update by 2023-07-07 | ||
insert into sys_menu values('1117', '菜单导出', '102', '5', '', '', '', 0, 1, 'F', '1', '1', 'system:menu:export', '#', 103, 1, sysdate, null, null, ''); | ||
insert into sys_menu values('1121', '部门导出', '103', '5', '', '', '', 0, 1, 'F', '1', '1', 'system:dept:export', '#', 103, 1, sysdate, null, null, ''); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- OSS配置新增自动创建桶字段 update by 2023-07-05 | ||
ALTER TABLE sys_oss_config ADD create_bucket int2 default 0 not null; | ||
COMMENT ON COLUMN sys_oss_config.create_bucket IS '创建桶(1=是,0=否)'; | ||
|
||
-- 代码生成新增排序字段 update by 2023-07-07 | ||
ALTER TABLE gen_table_column ADD is_sort char default null::bpchar; | ||
COMMENT ON COLUMN gen_table_column.is_sort IS '是否排序字段(1是)'; | ||
-- 新增部门、菜单导出 update by 2023-07-07 | ||
insert into sys_menu values('1117', '菜单导出', '102', '5', '', '', '', 0, 1, 'F', '1', '1', 'system:menu:export', '#', 103, 1, now(), null, null, ''); | ||
insert into sys_menu values('1121', '部门导出', '103', '5', '', '', '', 0, 1, 'F', '1', '1', 'system:dept:export', '#', 103, 1, now(), null, null, ''); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- OSS配置新增自动创建桶字段 update by 2023-07-05 | ||
ALTER TABLE sys_oss_config ADD COLUMN create_bucket tinyint(1) NOT NULL DEFAULT '0' COMMENT '创建桶(1=是,0=否)' AFTER status; | ||
|
||
-- 代码生成新增排序字段 update by 2023-07-07 | ||
ALTER TABLE gen_table_column ADD COLUMN is_sort char(1) NULL COMMENT '是否排序字段(1是)' AFTER is_detail; | ||
-- 新增部门、菜单导出 update by 2023-07-07 | ||
insert into sys_menu values('1117', '菜单导出', '102', '5', '', '', '', 0, 1, 'F', '1', '1', 'system:menu:export', '#', 103, 1, sysdate(), null, null, ''); | ||
insert into sys_menu values('1121', '部门导出', '103', '5', '', '', '', 0, 1, 'F', '1', '1', 'system:dept:export', '#', 103, 1, sysdate(), null, null, ''); |