diff --git a/resources/migrations/000_migrations.yaml b/resources/migrations/000_migrations.yaml
index 021f9c13a3169c46c952152b2e45c2db3d6aa886..d64afbaf9beb2364cc3dc909d4eb04cd9a9d9305 100644
--- a/resources/migrations/000_migrations.yaml
+++ b/resources/migrations/000_migrations.yaml
@@ -13909,6 +13909,30 @@ databaseChangeLog:
             columnName: size_y
             defaultValue: 4
 
+  - changeSet:
+      id: v46.00-042
+      author: tsmacdonald
+      comment: Added 0.46.0 -- index query_execution.executor_id
+      changes:
+        - createIndex:
+            tableName: query_execution
+            columns:
+              - column:
+                  name: executor_id
+            indexName: idx_query_execution_executor_id
+
+  - changeSet:
+      id: v46.00-043
+      author: tsmacdonald
+      comment: Added 0.46.0 -- index query_execution.context
+      changes:
+        - createIndex:
+            tableName: query_execution
+            columns:
+              - column:
+                  name: context
+            indexName: idx_query_execution_context
+
 # >>>>>>>>>> DO NOT ADD NEW MIGRATIONS BELOW THIS LINE! ADD THEM ABOVE <<<<<<<<<<
 
 ########################################################################################################################