Skip to content

Commit

Permalink
Resolve issue #5242
Browse files Browse the repository at this point in the history
Resolve mismatch in cgds.sql and migration.sql varchar size for `mutation_count_by_keyword.KEYWORD` (issue #5242)
  • Loading branch information
ao508 committed Jan 10, 2019
1 parent 4ae64bf commit a61185b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db-scripts/src/main/resources/cgds.sql
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ CREATE TABLE `mutation` (
-- --------------------------------------------------------
CREATE TABLE `mutation_count_by_keyword` (
`GENETIC_PROFILE_ID` int(11) NOT NULL,
`KEYWORD` varchar(50) DEFAULT NULL,
`KEYWORD` varchar(255) DEFAULT NULL,
`ENTREZ_GENE_ID` int(11) NOT NULL,
`KEYWORD_COUNT` int NOT NULL,
`GENE_COUNT` int NOT NULL,
Expand Down

0 comments on commit a61185b

Please sign in to comment.