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
45acc3fa
Commit
45acc3fa
authored
Jan 07, 2022
by
李腾威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
微型消防站和消防水源新增字段脚本及消防队伍新增字段
parent
8c766435
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
jcs-1.0.0.0.xml
...ystem-jcs/src/main/resources/db/changelog/jcs-1.0.0.0.xml
+44
-0
No files found.
amos-boot-system-jcs/src/main/resources/db/changelog/jcs-1.0.0.0.xml
View file @
45acc3fa
...
...
@@ -2583,6 +2583,50 @@
jc.type_code = '315'
</sql>
</changeSet>
<changeSet
author=
"litengwei"
id=
"2021-11-07-1"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"cb_fire_station"
columnName=
"person_charge_id"
/>
</not>
</preConditions>
<comment>
cb_fire_station add column person_charge_id '负责人id'
</comment>
<sql>
alter table `cb_fire_station` add column `person_charge_id` bigint DEFAULT NULL COMMENT '负责人id';
</sql>
</changeSet>
<changeSet
author=
"litengwei"
id=
"2021-11-07-2"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"cb_water_resource"
columnName=
"contact_user_id"
/>
</not>
</preConditions>
<comment>
cb_water_resource add column contact_user_id '联系人id'
</comment>
<sql>
alter table `cb_water_resource` add column `contact_user_id` bigint DEFAULT NULL COMMENT '联系人id';
</sql>
</changeSet>
<changeSet
author=
"litengwei"
id=
"2021-11-07-3"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"cb_firefighters"
columnName=
"biz_org_name"
/>
</not>
</preConditions>
<comment>
cb_firefighters add column biz_org_name '所属单位名称'
</comment>
<sql>
alter table `cb_firefighters` add column `biz_org_name` varchar(100) DEFAULT NULL COMMENT '所属单位名称';
</sql>
</changeSet>
<changeSet
author=
"litengwei"
id=
"2021-11-07-4"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"cb_firefighters"
columnName=
"biz_org_code"
/>
</not>
</preConditions>
<comment>
cb_firefighters add column biz_org_code '所属单位code'
</comment>
<sql>
alter table `cb_firefighters` add column `biz_org_code` varchar(100) DEFAULT NULL COMMENT '所属单位code';
</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