summaryrefslogtreecommitdiffstats
path: root/dashboard/src/account/migrations/0002_userprofile_email_addr.py
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/account/migrations/0002_userprofile_email_addr.py')
-rw-r--r--dashboard/src/account/migrations/0002_userprofile_email_addr.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/dashboard/src/account/migrations/0002_userprofile_email_addr.py b/dashboard/src/account/migrations/0002_userprofile_email_addr.py
new file mode 100644
index 0000000..bfbed17
--- /dev/null
+++ b/dashboard/src/account/migrations/0002_userprofile_email_addr.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10 on 2017-12-14 20:37
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('account', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='userprofile',
+ name='email_addr',
+ field=models.CharField(default='email@mail.com', max_length=300),
+ ),
+ ]