Skip to content

Commit

Permalink
Initialize class merge groups when setting up models.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Oct 29, 2024
1 parent 0abafe0 commit 3f656a1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/stories/hubbles_law/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { SyncMergedHubbleClasses, initializeSyncMergedHubbleClassesModel } from
import { Sequelize } from "sequelize";
import { initializeHubbleStudentDataModel } from "./hubble_student_data";
import { initializeHubbleClassDataModel } from "./hubble_class_data";
import { initializeHubbleClassMergeGroupModel } from "./hubble_class_merge_group";

export {
Galaxy,
Expand All @@ -23,4 +24,5 @@ export function initializeModels(db: Sequelize) {
initializeSyncMergedHubbleClassesModel(db);
initializeHubbleStudentDataModel(db);
initializeHubbleClassDataModel(db);
initializeHubbleClassMergeGroupModel(db);
}

0 comments on commit 3f656a1

Please sign in to comment.