Skip to content

Commit 40eae13

Browse files
committed
Added a migration for the email field on MeetingRegistration.
- Legacy-Id: 13558
1 parent 5926f88 commit 40eae13

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.10.7 on 2017-06-07 05:26
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+
('stats', '0003_registration_registrationstats'),
12+
]
13+
14+
operations = [
15+
migrations.AddField(
16+
model_name='meetingregistration',
17+
name='email',
18+
field=models.EmailField(blank=True, max_length=254, null=True),
19+
),
20+
]

0 commit comments

Comments
 (0)