Skip to content

Commit

Permalink
Remove 's' from derivative
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffersoncasimir authored May 9, 2024
1 parent fc1db13 commit df081fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raisinbread/RB_files/RB_physiological_output_type.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ SET FOREIGN_KEY_CHECKS=0;
TRUNCATE TABLE `physiological_output_type`;
LOCK TABLES `physiological_output_type` WRITE;
INSERT INTO `physiological_output_type` (`PhysiologicalOutputTypeID`, `OutputTypeName`, `OutputTypeDescription`) VALUES (1,'raw','raw dataset');
INSERT INTO `physiological_output_type` (`PhysiologicalOutputTypeID`, `OutputTypeName`, `OutputTypeDescription`) VALUES (2,'derivatives','derivative/processed dataset');
INSERT INTO `physiological_output_type` (`PhysiologicalOutputTypeID`, `OutputTypeName`, `OutputTypeDescription`) VALUES (2,'derivative','derivative/processed dataset');
UNLOCK TABLES;
SET FOREIGN_KEY_CHECKS=1;

0 comments on commit df081fe

Please sign in to comment.