Source code for router.migrations.0001_initial

# Generated by Django 3.1.2 on 2020-10-03 00:55

from django.db import migrations, models
import django_countries.fields
import localflavor.generic.models
import uuid


[docs]class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='SepaRoute', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('uuid', models.UUIDField(default=uuid.uuid4, editable=False)), ('scheme', models.CharField(choices=[('eu.sepa.sct', 'eu.sepa.sct'), ('eu.sepa.sctinst', 'eu.sepa.sctinst'), ('eu.sepa.sddcore', 'eu.sepa.sddcore'), ('eu.sepa.sddb2b', 'eu.sepa.sddb2b')], max_length=70)), ('external_key', models.CharField(max_length=16)), ('bic', localflavor.generic.models.BICField(max_length=11)), ('psp_name', models.CharField(max_length=140)), ('psp_city', models.CharField(max_length=35)), ('psp_country', django_countries.fields.CountryField(max_length=2)), ('reachable_via', models.CharField(blank=True, max_length=4)), ('reachability_type', models.CharField(choices=[('direct', 'Direct Participant'), ('indirect', 'Indirect Participant'), ('unknown', 'Unknown')], max_length=16)), ('intermediary_bic', localflavor.generic.models.BICField(blank=True, max_length=11)), ('preferred_route', models.BooleanField(default=False)), ('valid_from', models.DateField(blank=True, null=True)), ('valid_to', models.DateField(blank=True, null=True)), ], ), ]