diff --git a/hypha/apply/projects/migrations/0054_paf_reviewers_roles__alter_project_status.py b/hypha/apply/projects/migrations/0055_alter_project_status_add_pafreviewersrole.py
similarity index 78%
rename from hypha/apply/projects/migrations/0054_paf_reviewers_roles__alter_project_status.py
rename to hypha/apply/projects/migrations/0055_alter_project_status_add_pafreviewersrole.py
index 25a8392ee537a5d343f248a80edb21cfb18c6d81..83d1dc25ac02f2070a4ce2592e404a5ce145df19 100644
--- a/hypha/apply/projects/migrations/0054_paf_reviewers_roles__alter_project_status.py
+++ b/hypha/apply/projects/migrations/0055_alter_project_status_add_pafreviewersrole.py
@@ -1,4 +1,4 @@
-# Generated by Django 3.2.13 on 2022-07-14 12:46
+# Generated by Django 3.2.14 on 2022-08-09 04:59
 
 from django.db import migrations, models
 import django.db.models.deletion
@@ -8,10 +8,15 @@ import modelcluster.fields
 class Migration(migrations.Migration):
 
     dependencies = [
-        ('application_projects', '0053_projectapprovalform'),
+        ('application_projects', '0054_alter_project_form_fields'),
     ]
 
     operations = [
+        migrations.AddField(
+            model_name='project',
+            name='paf_reviews_meta_data',
+            field=models.JSONField(default=dict, help_text='Reviewers role and their actions/comments'),
+        ),
         migrations.AlterField(
             model_name='project',
             name='status',
diff --git a/hypha/apply/projects/migrations/0055_project_paf_reviews_meta_data.py b/hypha/apply/projects/migrations/0055_project_paf_reviews_meta_data.py
deleted file mode 100644
index a674f2a6a810e979b90a716bd00fafa187b5a064..0000000000000000000000000000000000000000
--- a/hypha/apply/projects/migrations/0055_project_paf_reviews_meta_data.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by Django 3.2.13 on 2022-07-18 13:27
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('application_projects', '0054_paf_reviewers_roles__alter_project_status'),
-    ]
-
-    operations = [
-        migrations.AddField(
-            model_name='project',
-            name='paf_reviews_meta_data',
-            field=models.JSONField(default=dict, help_text='Reviewers role and their actions/comments'),
-        ),
-    ]