From b639e56e1c39d043c4b080bd508e0f9c345693ee Mon Sep 17 00:00:00 2001
From: Todd Dembrey <todd.dembrey@torchbox.com>
Date: Wed, 20 Feb 2019 09:20:21 +0000
Subject: [PATCH] fixup! GH-858: Handle batch ready for review messages

---
 .../migrations/0016_add_batch_ready.py         | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 opentech/apply/activity/migrations/0016_add_batch_ready.py

diff --git a/opentech/apply/activity/migrations/0016_add_batch_ready.py b/opentech/apply/activity/migrations/0016_add_batch_ready.py
new file mode 100644
index 000000000..558e135df
--- /dev/null
+++ b/opentech/apply/activity/migrations/0016_add_batch_ready.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.0.9 on 2019-02-17 09:10
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('activity', '0015_add_batch_transition'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='event',
+            name='type',
+            field=models.CharField(choices=[('UPDATE_LEAD', 'Update Lead'), ('EDIT', 'Edit'), ('APPLICANT_EDIT', 'Applicant Edit'), ('NEW_SUBMISSION', 'New Submission'), ('SCREENING', 'Screening'), ('TRANSITION', 'Transition'), ('BATCH_TRANSITION', 'Batch Transition'), ('DETERMINATION_OUTCOME', 'Determination Outcome'), ('INVITED_TO_PROPOSAL', 'Invited To Proposal'), ('REVIEWERS_UPDATED', 'Reviewers Updated'), ('BATCH_REVIEWERS_UPDATED', 'Batch Reviewers Updated'), ('READY_FOR_REVIEW', 'Ready For Review'), ('BATCH_READY_FOR_REVIEW', 'Batch Ready For Review'), ('NEW_REVIEW', 'New Review'), ('COMMENT', 'Comment'), ('PROPOSAL_SUBMITTED', 'Proposal Submitted'), ('OPENED_SEALED', 'Opened Sealed Submission')], max_length=50),
+        ),
+    ]
-- 
GitLab