diff --git a/userprofile/migrations/0002_auto_20150708_1134.py b/userprofile/migrations/0002_alter_email_field_length.py
similarity index 100%
rename from userprofile/migrations/0002_auto_20150708_1134.py
rename to userprofile/migrations/0002_alter_email_field_length.py
diff --git a/userprofile/migrations/0003_trigger_label_query.py b/userprofile/migrations/0003_trigger_label_query.py
index ee79a23b021cc85cf3072b53b914e76e1f0574af..98ac95c70f7546c68747eec58851e22aaade4f30 100644
--- a/userprofile/migrations/0003_trigger_label_query.py
+++ b/userprofile/migrations/0003_trigger_label_query.py
@@ -7,7 +7,7 @@ from django.db import migrations, models
 class Migration(migrations.Migration):
 
     dependencies = [
-        ('userprofile', '0002_auto_20150708_1134'),
+        ('userprofile', '0002_alter_email_field_length'),
     ]
 
     operations = [
diff --git a/userprofile/migrations/0006_alter_trigger_contacts_field.py b/userprofile/migrations/0006_alter_trigger_contacts_field.py
new file mode 100644
index 0000000000000000000000000000000000000000..2cf4fbdc937a87d4a4e79b799134ec7e401ccafb
--- /dev/null
+++ b/userprofile/migrations/0006_alter_trigger_contacts_field.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.5 on 2017-10-18 17:15
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('userprofile', '0005_separate_call_and_text_alerts'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='trigger',
+            name='contacts',
+            field=models.ManyToManyField(to='userprofile.Contact'),
+        ),
+    ]