Files @ 59207eb0c971
Branch filter:

Location: symposion_app/pinaxcon/registrasion/migrations/0004_auto_20160923_0133.py

Jamie Lennox
Other suggested django migrations

So django keeps strict synchronization between its code and migrations
so that it can help generating new migrations. These are the additional
suggested migrations. A lot of these are a null effect, some are things
like transforming an unsigned integer to a signed integer. So not super
urgent on a small scale, but worth doing to keep django happy.
# -*- coding: utf-8 -*-
# Generated by Django 1.9.7 on 2016-09-23 01:33
from __future__ import unicode_literals

from django.db import migrations
import django_countries.fields


class Migration(migrations.Migration):

    dependencies = [
        ('pinaxcon_registrasion', '0003_auto_20160922_2337'),
    ]

    operations = [
        migrations.AlterField(
            model_name='attendeeprofile',
            name='country',
            field=django_countries.fields.CountryField(default=b'AU', max_length=2),
        ),
    ]