Skip to content

Commit

Permalink
added update database 13
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinDo committed Jul 24, 2024
1 parent 2772305 commit 223e289
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions resources/update_database/update_database_13.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
INSERT INTO `HerediVar`.`annotation_type` (`title`, `display_title`, `description`, `value_type`, `version`, `version_date`, `group_name`, `is_transcript_specific`, `is_deleted`) VALUES ('heredicare_vid', 'HerediCare VID', 'The VID from HerediCare.The version_date is inaccurate. They are always up to date when reimporting from heredicare.', 'int', '-', '2024-07-24', 'ID', '0', '0');


ALTER TABLE `HerediVar`.`import_queue`
CHANGE COLUMN `source` `source` ENUM('vcf', 'heredicare_complete', 'heredicare_specific', 'heredicare_update') NOT NULL DEFAULT 'heredicare_complete' ;

UPDATE `HerediVar`.`import_queue` SET source = 'heredicare_update' WHERE source = 'heredicare_complete';

0 comments on commit 223e289

Please sign in to comment.