Skip to content

Commit

Permalink
Merge pull request #27 from rjgildea/sample_group
Browse files Browse the repository at this point in the history
Add blSampleGroup linked to a dc
  • Loading branch information
KarlLevik committed Aug 3, 2020
2 parents c83c5ab + a43c640 commit f9ea372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,15 @@ INSERT INTO `BLSample` (`blSampleId`, `diffractionPlanId`, `crystalId`, `contain
--

/*!40000 ALTER TABLE `BLSampleGroup` DISABLE KEYS */;
INSERT INTO `BLSampleGroup` (`blSampleGroupId`, `name`) VALUES (5,NULL);
INSERT INTO `BLSampleGroup` (`blSampleGroupId`, `name`) VALUES (5,NULL), (6,'foo');
/*!40000 ALTER TABLE `BLSampleGroup` ENABLE KEYS */;

--
-- Dumping data for table `BLSampleGroup_has_BLSample`
--

/*!40000 ALTER TABLE `BLSampleGroup_has_BLSample` DISABLE KEYS */;
INSERT INTO `BLSampleGroup_has_BLSample` (`blSampleGroupId`, `blSampleId`, `groupOrder`, `type`) VALUES (5,398824,1,'background'),(5,398827,2,'sample');
INSERT INTO `BLSampleGroup_has_BLSample` (`blSampleGroupId`, `blSampleId`, `groupOrder`, `type`) VALUES (5,398824,1,'background'),(5,398827,2,'sample'),(6,398810,NULL,NULL);
/*!40000 ALTER TABLE `BLSampleGroup_has_BLSample` ENABLE KEYS */;

--
Expand Down

0 comments on commit f9ea372

Please sign in to comment.