diff --git a/pinaxcon/registrasion/migrations/0005_auto_20181005_1630.py b/pinaxcon/registrasion/migrations/0005_auto_20181005_1630.py new file mode 100644 index 0000000000000000000000000000000000000000..4ee0029a484c7cba0eaae8075012bfdb22218715 --- /dev/null +++ b/pinaxcon/registrasion/migrations/0005_auto_20181005_1630.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2018-10-05 20:30 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('pinaxcon_registrasion', '0004_attendeeprofile_agreement'), + ] + + operations = [ + migrations.AlterField( + model_name='attendeeprofile', + name='agreement', + field=models.BooleanField(default=False, help_text=b"I agree to act according to the North Bay Python Code of Conduct. I also agree with the North Bay Python Terms and Conditions.", verbose_name=b'Agreement'), + ), + ]