This repository was archived by the owner on Sep 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
src/main/java/com/marklogic/appdeployer/command Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -140,18 +140,19 @@ public Map<String, List<Command>> buildCommandMap() {
140140 taskCommands .add (new DeployScheduledTasksCommand ());
141141 map .put ("mlTaskCommands" , taskCommands );
142142
143- // Triggers
144- List <Command > triggerCommands = new ArrayList <Command >();
145- triggerCommands .add (new DeployTriggersCommand ());
146- map .put ("mlTriggerCommands" , triggerCommands );
147-
148143 // Temporal
149144 List <Command > temporalCommands = new ArrayList <>();
150145 temporalCommands .add (new DeployTemporalAxesCommand ());
151146 temporalCommands .add (new DeployTemporalCollectionsCommand ())
;
152147 temporalCommands .add (new DeployTemporalCollectionsLSQTCommand ())
;
153148 map .put ("mlTemporalCommands" , temporalCommands );
154149
150+ // Triggers
151+ List <Command > triggerCommands = new ArrayList <Command >();
152+ triggerCommands .add (new DeployTriggersCommand ());
153+ map .put ("mlTriggerCommands" , triggerCommands );
154+
155+
155156 // SQL Views
156157 List <Command > viewCommands = new ArrayList <Command >();
157158 viewCommands .add (new DeployViewSchemasCommand ());
You can’t perform that action at this time.
0 commit comments