33 lines
1 KiB
Python
33 lines
1 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.7 on 2019-01-02 16:40
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('pinaxcon_registrasion', '0005_auto_20181005_1630'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='attendeeprofile',
|
||
|
name='accessibility_requirements',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='attendeeprofile',
|
||
|
name='gender',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='attendeeprofile',
|
||
|
name='newsletter',
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='attendeeprofile',
|
||
|
name='agreement',
|
||
|
field=models.BooleanField(default=False, help_text=b"I agree to act according to the <a href='/code-of-conduct'>Code of Conduct</a>. I also agree with the CopyleftConf <a href='/terms'>Terms and Conditions</a>.", verbose_name=b'Agreement'),
|
||
|
),
|
||
|
]
|