File tree Expand file tree Collapse file tree 5 files changed +9
-4
lines changed
main/resources/db-scripts Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 3131 <frontend .artifactId>frontend-cbioportal</frontend .artifactId>
3232 <frontend .version>v6.2.2</frontend .version>
3333 <!-- THIS SHOULD BE KEPT IN SYNC TO VERSION IN CGDS.SQL -->
34- <db .version>2.14.2 </db .version>
34+ <db .version>2.14.3 </db .version>
3535 <derived_table .version>1.0.0</derived_table .version>
3636
3737 <!-- Version properties for dependencies that should have same version. -->
Original file line number Diff line number Diff line change @@ -743,4 +743,4 @@ CREATE TABLE `resource_study` (
743743
744744-- DB_SCHEMA_VERSION AND DERIVED_TABLE_SCHEMA_VERSION MUST BE KEPT IN SYNC WITH THE db.version AND derived_table.version PROPERTIES IN pom.xml
745745INSERT INTO ` info` (` DB_SCHEMA_VERSION` , ` GENESET_VERSION` , ` DERIVED_TABLE_SCHEMA_VERSION` )
746- VALUES (' 2.14.2 ' , NULL , ' 1.0.0' );
746+ VALUES (' 2.14.3 ' , NULL , ' 1.0.0' );
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ ALTER TABLE `protein_array_target` MODIFY COLUMN `ENTREZ_GENE_ID` int(11) NOT NU
6565ALTER TABLE ` sanger_cancer_census` MODIFY COLUMN ` ENTREZ_GENE_ID` int (11 ) NOT NULL ;
6666ALTER TABLE ` gistic_to_gene` MODIFY COLUMN ` ENTREZ_GENE_ID` int (11 ) NOT NULL ;
6767ALTER TABLE ` cna_event` MODIFY COLUMN ` ENTREZ_GENE_ID` int (11 ) NOT NULL ;
68+ ALTER TABLE ` cosmic_mutation` MODIFY COLUMN ` ENTREZ_GENE_ID` int (11 ) NOT NULL ;
6869ALTER TABLE ` mutation` MODIFY COLUMN ` ENTREZ_GENE_ID` int (11 ) NOT NULL ;
6970ALTER TABLE ` mutation` ADD KEY (` MUTATION_EVENT_ID` );
7071ALTER TABLE ` sample_profile` ADD KEY (` SAMPLE_ID` );
@@ -1072,3 +1073,7 @@ UPDATE `info` SET `DB_SCHEMA_VERSION`="2.14.1";
10721073# #version: 2.14.2
10731074ALTER TABLE ` resource_definition` ADD COLUMN ` CUSTOM_METADATA` JSON;
10741075UPDATE ` info` SET ` DB_SCHEMA_VERSION` = " 2.14.2" ;
1076+
1077+ # #version: 2.14.3
1078+ DROP TABLE IF EXISTS ` cosmic_mutation` ;
1079+ UPDATE ` info` SET ` DB_SCHEMA_VERSION` = " 2.14.3" ;
Original file line number Diff line number Diff line change @@ -737,4 +737,4 @@ CREATE TABLE `resource_study` (
737737
738738-- DB_SCHEMA_VERSION AND DERIVED_TABLE_SCHEMA_VERSION MUST BE KEPT IN SYNC WITH THE db.version AND derived_table.version PROPERTIES IN pom.xml
739739INSERT INTO ` info` (` DB_SCHEMA_VERSION` , ` GENESET_VERSION` , ` DERIVED_TABLE_SCHEMA_VERSION` )
740- VALUES (' 2.14.2 ' , NULL , ' 1.0.0' );
740+ VALUES (' 2.14.3 ' , NULL , ' 1.0.0' );
Original file line number Diff line number Diff line change @@ -737,4 +737,4 @@ CREATE TABLE `resource_study` (
737737
738738-- DB_SCHEMA_VERSION AND DERIVED_TABLE_SCHEMA_VERSION MUST BE KEPT IN SYNC WITH THE db.version AND derived_table.version PROPERTIES IN pom.xml
739739INSERT INTO ` info` (` DB_SCHEMA_VERSION` , ` GENESET_VERSION` , ` DERIVED_TABLE_SCHEMA_VERSION` )
740- VALUES (' 2.14.2 ' , NULL , ' 1.0.0' );
740+ VALUES (' 2.14.3 ' , NULL , ' 1.0.0' );
You can’t perform that action at this time.
0 commit comments