Skip to content

Commit

Permalink
Merge Use correct schema in bogus data
Browse files Browse the repository at this point in the history
  • Loading branch information
MiraGeowerkstatt authored Dec 16, 2022
2 parents cee1129 + 259991f commit bdd9e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/BdmsContextExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static void SeedData(this BdmsContext context)
List<int> qtDescriptionIds = codelists.Where(c => c.Schema == "qt_description").Select(s => s.Id).ToList();
List<int> drillingMethodIds = codelists.Where(c => c.Schema == "extended.drilling_method").Select(s => s.Id).ToList();
List<int> cuttingsIds = codelists.Where(c => c.Schema == "custom.cuttings").Select(s => s.Id).ToList();
List<int> qtDepthIds = codelists.Where(c => c.Schema == "custom.qt_depth").Select(s => s.Id).ToList();
List<int> qtDepthIds = codelists.Where(c => c.Schema == "custom.qt_top_bedrock").Select(s => s.Id).ToList();
List<int> qtElevationIds = codelists.Where(c => c.Schema == "qt_elevation").Select(s => s.Id).ToList();
List<int> layerKindIds = codelists.Where(c => c.Schema == "layer_kind").Select(s => s.Id).ToList();
List<int> purposeIds = codelists.Where(c => c.Schema == "extended.purpose").Select(s => s.Id).ToList();
Expand Down

0 comments on commit bdd9e69

Please sign in to comment.