diff --git a/resources/migrations/000_migrations.yaml b/resources/migrations/000_migrations.yaml
index 75291a4895293d8d3004424ae06cde1186ecd94a..ec6a440b74121a44b71b5e65587ec385ef0e1743 100644
--- a/resources/migrations/000_migrations.yaml
+++ b/resources/migrations/000_migrations.yaml
@@ -15922,6 +15922,32 @@ databaseChangeLog:
                   constraints:
                     nullable: false
 
+  - changeSet:
+      id: v48.00-003
+      author: qnkhuat
+      comment: Added 0.48.0 - drop computation_job_result table
+      preConditions:
+        - onFail: MARK_RAN
+        - tableExists:
+            tableName: computation_job_result
+      changes:
+          - dropTable:
+              tableName: computation_job_result
+      rollback: # no rollback needed since this table has been unused since 2018
+
+  - changeSet:
+      id: v48.00-004
+      author: qnkhuat
+      comment: Added 0.48.0 - drop computation_job table
+      preConditions:
+        - onFail: MARK_RAN
+        - tableExists:
+            tableName: computation_job
+      changes:
+          - dropTable:
+              tableName: computation_job
+      rollback: # no rollback needed since this table has been unused since 2018
+
   # >>>>>>>>>> DO NOT ADD NEW MIGRATIONS BELOW THIS LINE! ADD THEM ABOVE <<<<<<<<<<
 
 ########################################################################################################################