27 lines
978 B
Python
27 lines
978 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.29 on 2020-10-15 15:38
|
|
from __future__ import unicode_literals
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dav_events', '0033_auto_20200925_1543'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='participant',
|
|
name='dav_member',
|
|
field=models.BooleanField(default=True, help_text='In Ausnahmefällen nehmen wir auch Nichtmitglieder mit.', verbose_name='DAV Mitglied'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='participant',
|
|
name='dav_number',
|
|
field=models.CharField(blank=True, max_length=62, validators=[django.core.validators.RegexValidator('^([0-9]{1,10}/[0-9]{2,10}/)?[0-9]{1,10}(\\*[0-9]{1,10})?(\\*[0-9]{4}\\*[0-9]{4})?([* ][0-9]{8})?$', 'Ungültiges Format.')], verbose_name='DAV Mitgliedsnummer'),
|
|
),
|
|
]
|