You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
458 B
Python
21 lines
458 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.2 on 2016-10-18 17:42
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('members', '0002_member_email'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='member',
|
|
name='email',
|
|
field=models.EmailField(default='', max_length=100),
|
|
),
|
|
]
|