Merge "Allows for manual addition of bookings"
[pharos-tools.git] / dashboard / src / account / migrations / 0002_userprofile_email_addr.py
1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.10 on 2017-12-14 20:37
3 from __future__ import unicode_literals
4
5 from django.db import migrations, models
6
7
8 class Migration(migrations.Migration):
9
10     dependencies = [
11         ('account', '0001_initial'),
12     ]
13
14     operations = [
15         migrations.AddField(
16             model_name='userprofile',
17             name='email_addr',
18             field=models.CharField(default='email@mail.com', max_length=300),
19         ),
20     ]