-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
0887009
commit dc1daf3
Showing
10 changed files
with
222 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
alter table t_backend_package | ||
add commit_id varchar(50) null comment '代码提交id'; | ||
|
||
alter table t_backend_package | ||
add commit_info varchar(100) null comment '代码提交信息'; | ||
|
||
alter table t_frontend_package | ||
add commit_id varchar(50) null comment '代码提交id'; | ||
|
||
alter table t_frontend_package | ||
add commit_info varchar(100) null comment '代码提交信息'; | ||
|
||
alter table t_workflow_detail | ||
add branch varchar(50) null comment '分支信息'; | ||
|
||
alter table t_workflow_detail | ||
add commit_id varchar(50) null comment '代码提交id'; | ||
|
||
alter table t_workflow_detail | ||
add commit_info varchar(100) null comment '代码提交信息'; | ||
|
||
alter table t_contract | ||
add commit_id varchar(50) null comment '代码提交id'; | ||
alter table t_contract | ||
add commit_info varchar(100) null comment '代码提交信息'; | ||
|
||
alter table t_frontend_deploy | ||
add commit_id varchar(50) null comment '代码提交id'; | ||
|
||
alter table t_frontend_deploy | ||
add commit_info varchar(100) null comment '代码提交信息'; | ||
|
||
|
||
alter table t_contract_deploy | ||
add branch varchar(50) null comment '分支信息'; | ||
|
||
alter table t_contract_deploy | ||
add commit_id varchar(50) null comment '代码提交id'; | ||
|
||
alter table t_contract_deploy | ||
add commit_info varchar(100) null comment '代码提交信息'; | ||
|
||
alter table t_backend_deploy | ||
add branch varchar(50) null comment '分支信息'; | ||
|
||
alter table t_backend_deploy | ||
add commit_id varchar(50) null comment '代码提交id'; | ||
|
||
alter table t_backend_deploy | ||
add commit_info varchar(100) null comment '代码提交信息'; |
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