Added a migration for the email field on MeetingRegistration.
- Legacy-Id: 13558
This commit is contained in:
parent
5926f8832c
commit
40eae13aa6
20
ietf/stats/migrations/0004_meetingregistration_email.py
Normal file
20
ietf/stats/migrations/0004_meetingregistration_email.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.7 on 2017-06-07 05:26
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stats', '0003_registration_registrationstats'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='meetingregistration',
|
||||
name='email',
|
||||
field=models.EmailField(blank=True, max_length=254, null=True),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue