Skip to content

Instantly share code, notes, and snippets.

@justinvdm
Created February 27, 2017 10:33
Show Gist options
  • Save justinvdm/a5ea659641a4cb4e7fa81ee21a39b82d to your computer and use it in GitHub Desktop.
Save justinvdm/a5ea659641a4cb4e7fa81ee21a39b82d to your computer and use it in GitHub Desktop.
diff --git a/mentorship/mentor/migrations/0039_auto_20170227_1031.py b/mentorship/mentor/migrations/0039_auto_20170227_1031.py
new file mode 100644
index 0000000..9a6b2d4
--- /dev/null
+++ b/mentorship/mentor/migrations/0039_auto_20170227_1031.py
@@ -0,0 +1,64 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('mentor', '0038_contact_external_id'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='call',
+ name='caller',
+ field=models.ForeignKey(related_name='caller', verbose_name=b'Mentor', to='mentor.Contact'),
+ ),
+ migrations.AlterField(
+ model_name='call',
+ name='end_time',
+ field=models.DateTimeField(null=True, verbose_name=b'System notified of call end', blank=True),
+ ),
+ migrations.AlterField(
+ model_name='call',
+ name='partner_end_time',
+ field=models.DateTimeField(null=True, verbose_name=b'End time given by partner', blank=True),
+ ),
+ migrations.AlterField(
+ model_name='call',
+ name='partner_start_time',
+ field=models.DateTimeField(null=True, verbose_name=b'Start time given by partner', blank=True),
+ ),
+ migrations.AlterField(
+ model_name='call',
+ name='receiver',
+ field=models.ForeignKey(related_name='receiver', verbose_name=b'Mentee', to='mentor.Contact'),
+ ),
+ migrations.AlterField(
+ model_name='call',
+ name='start_time',
+ field=models.DateTimeField(auto_now_add=True, verbose_name=b'Mentor activated call'),
+ ),
+ migrations.AlterField(
+ model_name='callnote',
+ name='activity_helpful',
+ field=models.TextField(default=b'', choices=[(b'0', b'Not at all'), (b'1', b'A little'), (b'2', b'Somewhat'), (b'3', b'Quite a bit'), (b'4', b'A lot')]),
+ ),
+ migrations.AlterField(
+ model_name='callnote',
+ name='call_quality',
+ field=models.TextField(default=b'', choices=[(b'EXCELLENT', b'Excellent'), (b'OK', b'Ok'), (b'INAUDIBLE', b'Inaudible'), (b'DROPPED', b'Dropped'), (b'DELAYED', b'Delayed')]),
+ ),
+ migrations.AlterField(
+ model_name='callnote',
+ name='mentee_state',
+ field=models.TextField(default=b'', choices=[(b'happy', b'Happy'), (b'sad', b'Sad'), (b'bored', b'Bored'), (b'confused', b'Confused'), (b'upset', b'Upset'), (b'withdrawn', b'Withdrawn')]),
+ ),
+ migrations.AlterField(
+ model_name='message',
+ name='message_type',
+ field=models.CharField(default=b'', max_length=10, choices=[(b'USER', b'Individual'), (b'SYSTEM', b'Automated')]),
+ ),
+ ]
@codiebeulaine
Copy link

👍

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