fix:flayway

This commit is contained in:
wenyann 2021-03-12 14:55:33 +08:00
parent 637739459e
commit d3d35568bb
1 changed files with 8 additions and 3 deletions

View File

@ -78,14 +78,19 @@ alter table test_case
alter table test_case
add demand_name varchar(999) null;
alter table test_case
add follow_people varchar(100) null;
-- test_case_review add column
ALTER TABLE test_case_review ADD tags VARCHAR(2000) NULL;
ALTER TABLE test_case_review
ADD tags VARCHAR(2000) NULL;
-- alter test_plan_api_scenario
alter table test_plan_api_scenario change environment_id environment longtext null comment 'Relevance environment';
alter table test_plan_api_scenario
change environment_id environment longtext null comment 'Relevance environment';
-- file add sort column
alter table file_metadata add sort int default 0;
alter table file_metadata
add sort int default 0;
-- add Original state
alter table api_definition add original_state varchar(64);