summaryrefslogtreecommitdiffstats
path: root/dashboard/src/account/migrations/0002_userprofile_email_addr.py
diff options
context:
space:
mode:
authorJack Morgan <jack.morgan@intel.com>2018-01-08 23:56:29 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-08 23:56:29 +0000
commit48d41db0824f86b0594088303c792633f977719d (patch)
treeee3fc9e3f8898081d3e82ba6a02bc5c4bf4d0ca7 /dashboard/src/account/migrations/0002_userprofile_email_addr.py
parentb55a6c39179813070bef63121965a4a045ac13ad (diff)
parentaebb690bd07460a9f61db36e46d79d502e7fc247 (diff)
Merge "Implement Notification Framework with Initial Email Support"
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),
+ ),
+ ]