Files @ be277c17d22d
Branch filter:

Location: symposion_app/registrasion/migrations/0005_auto_20160323_2141.py

Christopher Neugebauer
BadgeAndProfile is replaced with AttendeeProfileBase — consumer apps should subclass AttendeeProfileBase to make the registration process work :)
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('registrasion', '0004_auto_20160323_2137'),
    ]

    operations = [
        migrations.RenameField(
            model_name='badgeandprofile',
            old_name='profile',
            new_name='attendee',
        ),
    ]