Skip to content
Snippets Groups Projects

Migrate old migrations to django-localflavor

Merged magicfelix requested to merge 51-adapt-for-usage-with-spa into master
3 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -3,7 +3,7 @@
@@ -3,7 +3,7 @@
import django.contrib.sites.managers
import django.contrib.sites.managers
from django.db import migrations, models
from django.db import migrations, models
import django.db.models.deletion
import django.db.models.deletion
import django_iban.fields
import localflavor.generic.models
class Migration(migrations.Migration):
class Migration(migrations.Migration):
@@ -85,7 +85,7 @@ class Migration(migrations.Migration):
@@ -85,7 +85,7 @@ class Migration(migrations.Migration):
('channel', models.CharField(blank=True, default='', max_length=255, verbose_name='Channel')),
('channel', models.CharField(blank=True, default='', max_length=255, verbose_name='Channel')),
('donation', models.PositiveIntegerField(blank=True, null=True, verbose_name='Donation')),
('donation', models.PositiveIntegerField(blank=True, null=True, verbose_name='Donation')),
('accept_sepa', models.BooleanField(verbose_name='SEPA direct debit')),
('accept_sepa', models.BooleanField(verbose_name='SEPA direct debit')),
('iban', django_iban.fields.IBANField(enforce_database_constraint=True, max_length=34, null=True, verbose_name='IBAN (for SEPA direct debit)')),
('iban', localflavor.generic.models.IBANField(max_length=34, null=True, verbose_name='IBAN (for SEPA direct debit)')),
('accept_terms', models.BooleanField(verbose_name='Delcaration of consent by parents')),
('accept_terms', models.BooleanField(verbose_name='Delcaration of consent by parents')),
('accept_data', models.BooleanField(verbose_name='Declaration of consent data protection')),
('accept_data', models.BooleanField(verbose_name='Declaration of consent data protection')),
('accept_general_terms', models.BooleanField(verbose_name='Declatation of consent terms and condition')),
('accept_general_terms', models.BooleanField(verbose_name='Declatation of consent terms and condition')),
Loading