debug model collection add history

This commit is contained in:
mr 2024-10-07 09:08:53 +02:00
parent 6dfd6058ef
commit 0efb852839

View File

@ -36,6 +36,8 @@ var models = map[string]func() utils.DBObject{
tools.COLLABORATIVE_AREA.String(): func() utils.DBObject { return &collaborative_area.CollaborativeArea{} },
tools.RULE.String(): func() utils.DBObject { return &rule.Rule{} },
tools.BOOKING.String(): func() utils.DBObject { return &booking.Booking{} },
tools.WORKFLOW_HISTORY.String(): func() utils.DBObject { return &w2.WorkflowHistory{} },
tools.WORKSPACE_HISTORY.String(): func() utils.DBObject { return &w3.WorkspaceHistory{} },
}
// Model returns the model object based on the model type