Skip to content

Instantly share code, notes, and snippets.

@justinvdm
Created April 3, 2017 09:51
Show Gist options
  • Save justinvdm/24cfe8dbdae75117ee5c98f351bb4500 to your computer and use it in GitHub Desktop.
Save justinvdm/24cfe8dbdae75117ee5c98f351bb4500 to your computer and use it in GitHub Desktop.
diff --git a/mentorship/mentor/migrations/0048_auto_20170403_0950.py b/mentorship/mentor/migrations/0048_auto_20170403_0950.py
new file mode 100644
index 0000000..61fbf55
--- /dev/null
+++ b/mentorship/mentor/migrations/0048_auto_20170403_0950.py
@@ -0,0 +1,28 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10 on 2017-04-03 09:50
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('mentor', '0047_blog_active'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='calldatarecord',
+ options={'verbose_name': 'Call attempt'},
+ ),
+ migrations.RemoveField(
+ model_name='call',
+ name='status',
+ ),
+ migrations.AddField(
+ model_name='call',
+ name='_status',
+ field=models.CharField(choices=[(b'SUCCESSFUL', b'Successful'), (b'SCHEDULED', b'Scheduled'), (b'INPROGRESS', b'In Progress'), (b'INACTIVE', b'Unsuccessful')], db_column=b'status', default=b'', max_length=255),
+ ),
+ ]
@codiebeulaine
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment