Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
7fabfddc
Commit
7fabfddc
authored
Dec 10, 2022
by
zhangsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
liqubase 提交
parent
2e4a7f64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
wl-3.6.0.xml
...ot-system-equip/src/main/resources/changelog/wl-3.6.0.xml
+21
-1
jcs-1.0.0.0.xml
...ystem-jcs/src/main/resources/db/changelog/jcs-1.0.0.0.xml
+9
-1
No files found.
amos-boot-system-equip/src/main/resources/changelog/wl-3.6.0.xml
View file @
7fabfddc
...
...
@@ -490,7 +490,26 @@
</changeSet>
<!-- 未找到这个字段有 liqubase维护,已添加判断,字段存在的话就不走这-->
<changeSet
author=
"zs"
id=
"2022-12-10-01"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"cb_org_usr"
columnName=
"job_title"
/>
</not>
</preConditions>
<sql>
alter table cb_org_usr add column job_title varchar(3000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '岗位名称'
</sql>
</changeSet>
<changeSet
author=
"zs"
id=
"2022-12-10-02"
>
<preConditions
onFail=
"MARK_RAN"
>
<columnExists
tableName=
"cb_org_usr"
columnName=
"job_title"
/>
</preConditions>
<comment>
修改属性字段 job_title
</comment>
<sql>
alter table `cb_org_usr` MODIFY COLUMN `job_title` varchar(3000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '岗位名称';
</sql>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
amos-boot-system-jcs/src/main/resources/db/changelog/jcs-1.0.0.0.xml
View file @
7fabfddc
...
...
@@ -3762,7 +3762,15 @@
<!-- </sql>-->
<!-- </changeSet>-->
<changeSet
author=
"zs"
id=
"20221210-01"
>
<preConditions
onFail=
"MARK_RAN"
>
<tableExists
tableName=
"cb_sign"
/>
</preConditions>
<comment>
修改人员岗位长度
</comment>
<sql>
ALTER TABLE cb_sign MODIFY COLUMN job_title varchar(3000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '岗位';;
</sql>
</changeSet>
</databaseChangeLog>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment