encorelab / SCORE

Scripting and ORchestration Environment (SCORE)
Other
2 stars 0 forks source link

Merge with WISE 5.14.1 #57

Closed hirokiterashima closed 4 years ago

hirokiterashima commented 4 years ago
  1. Run command in MySQL to add tables related to workgroup tags
    
    alter table `wise_database`.`tags` add column `runId` bigint null after `name`;

create table workgroups_related_to_tags ( workgroups_fk bigint not null, tags_fk integer not null, constraint workgroups_related_to_tagsTagFK foreign key (tags_fk) references tags (id), constraint workgroups_related_to_tagsWorkgroupFK foreign key (workgroups_fk) references workgroups (id), primary key (workgroups_fk, tags_fk) );



2. Test that everything works as before