From 59207eb0c971327cbe2d00cb7646d9dde6a09f2c Mon Sep 17 00:00:00 2001 From: Jamie Lennox Date: Sun, 2 Jul 2017 22:38:38 +1000 Subject: [PATCH] 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. --- .../migrations/0005_auto_20170702_2233.py | 111 ++++++++++++++++++ .../migrations/0006_auto_20170702_2233.py | 25 ++++ .../migrations/0002_auto_20170702_2233.py | 30 +++++ 3 files changed, 166 insertions(+) create mode 100644 pinaxcon/registrasion/migrations/0005_auto_20170702_2233.py create mode 100644 vendor/registrasion/migrations/0006_auto_20170702_2233.py create mode 100644 vendor/symposion/proposals/migrations/0002_auto_20170702_2233.py diff --git a/pinaxcon/registrasion/migrations/0005_auto_20170702_2233.py b/pinaxcon/registrasion/migrations/0005_auto_20170702_2233.py new file mode 100644 index 00000000..909bae66 --- /dev/null +++ b/pinaxcon/registrasion/migrations/0005_auto_20170702_2233.py @@ -0,0 +1,111 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.3 on 2017-07-02 12:33 +from __future__ import unicode_literals + +from django.db import migrations, models +import django_countries.fields + + +class Migration(migrations.Migration): + + dependencies = [ + ('pinaxcon_registrasion', '0004_auto_20160923_0133'), + ] + + operations = [ + migrations.AlterField( + model_name='attendeeprofile', + name='accessibility_requirements', + field=models.CharField(blank=True, max_length=256, verbose_name='Accessibility-related requirements'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='address_line_1', + field=models.CharField(blank=True, help_text='This address, if provided, will appear on your invoices.', max_length=1024, verbose_name='Address line 1'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='address_line_2', + field=models.CharField(blank=True, max_length=1024, verbose_name='Address line 2'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='address_postcode', + field=models.CharField(blank=True, max_length=1024, verbose_name='Postal/Zip code'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='address_suburb', + field=models.CharField(blank=True, max_length=1024, verbose_name='City/Town/Suburb'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='company', + field=models.CharField(blank=True, help_text="The name of your company, as you'd like it on your badge", max_length=64), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='country', + field=django_countries.fields.CountryField(default='AU', max_length=2), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='dietary_restrictions', + field=models.CharField(blank=True, max_length=256, verbose_name='Food allergies, intolerances, or dietary restrictions'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='free_text_1', + field=models.CharField(blank=True, help_text="A line of free text that will appear on your badge. Use this for your Twitter handle, IRC nick, your preferred pronouns or anything else you'd like people to see on your badge.", max_length=64, verbose_name='Free text line 1'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='free_text_2', + field=models.CharField(blank=True, max_length=64, verbose_name='Free text line 2'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='gender', + field=models.CharField(blank=True, help_text='Gender data will only be used for demographic purposes.', max_length=64), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='lca_announce', + field=models.BooleanField(help_text='Select to be subscribed to the low-traffic lca-announce mailing list', verbose_name='Subscribe to lca-announce list'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='lca_chat', + field=models.BooleanField(help_text='lca2017-chat is a high-traffic mailing list used by attendees during the week of the conference for general discussion.', verbose_name='Subscribe to the lca2017-chat list'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='linux_australia', + field=models.BooleanField(help_text="Select this field to register for free Linux Australia membership.", verbose_name='Linux Australia membership'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='name', + field=models.CharField(help_text="Your name, as you'd like it to appear on your badge. ", max_length=64, verbose_name='Your name (for your conference nametag)'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='name_per_invoice', + field=models.CharField(blank=True, help_text="If your legal name is different to the name on your badge, fill this in, and we'll put it on your invoice. Otherwise, leave it blank.", max_length=256, verbose_name='Your legal name (for invoicing purposes)'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='of_legal_age', + field=models.BooleanField(help_text='Being under 18 will not stop you from attending the conference. We need to know whether you are over 18 to allow us to cater for you at venues that serve alcohol.', verbose_name='Are you over 18?'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='past_lca', + field=models.ManyToManyField(blank=True, to='pinaxcon_registrasion.PastEvent', verbose_name='Which past linux.conf.au events have you attended?'), + ), + migrations.AlterField( + model_name='attendeeprofile', + name='state', + field=models.CharField(blank=True, max_length=256, verbose_name='State/Territory/Province'), + ), + ] diff --git a/vendor/registrasion/migrations/0006_auto_20170702_2233.py b/vendor/registrasion/migrations/0006_auto_20170702_2233.py new file mode 100644 index 00000000..531c07d9 --- /dev/null +++ b/vendor/registrasion/migrations/0006_auto_20170702_2233.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.3 on 2017-07-02 12:33 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('registrasion', '0005_auto_20160905_0945'), + ] + + operations = [ + migrations.AlterField( + model_name='category', + name='order', + field=models.PositiveIntegerField(db_index=True, verbose_name='Display order'), + ), + migrations.AlterField( + model_name='product', + name='order', + field=models.PositiveIntegerField(db_index=True, verbose_name='Display order'), + ), + ] diff --git a/vendor/symposion/proposals/migrations/0002_auto_20170702_2233.py b/vendor/symposion/proposals/migrations/0002_auto_20170702_2233.py new file mode 100644 index 00000000..dbe210a5 --- /dev/null +++ b/vendor/symposion/proposals/migrations/0002_auto_20170702_2233.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.3 on 2017-07-02 12:33 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('symposion_proposals', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='proposalbase', + name='abstract', + field=models.TextField(help_text='This will appear in the conference programme. Up to about 500 words. This field is rendered with the monospace font Hack with whitespace preserved', verbose_name='Abstract'), + ), + migrations.AlterField( + model_name='proposalbase', + name='private_abstract', + field=models.TextField(help_text='This will only be shown to organisers and reviewers. You should provide any details about your proposal that you don\'t want to be public here. This field is rendered with the monospace font Hack with whitespace preserved', verbose_name='Private Abstract'), + ), + migrations.AlterField( + model_name='proposalbase', + name='technical_requirements', + field=models.TextField(blank=True, help_text='Speakers will be provided with: Internet access, power, projector, audio. If you require anything in addition, please list your technical requirements here. Such as: a static IP address, A/V equipment or will be demonstrating security-related techniques on the conference network. This field is rendered with the monospace font Hack with whitespace preserved', verbose_name='Special Requirements'), + ), + ]