mirror of https://gitlab.crans.org/bde/nk20
19 lines
517 B
Python
19 lines
517 B
Python
|
# Generated by Django 2.2.28 on 2023-07-09 09:51
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('wei', '0005_auto_20230128_1850'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='weiregistration',
|
||
|
name='clothing_cut',
|
||
|
field=models.CharField(choices=[('male', 'Male'), ('female', 'Female'), ('unisex', 'Unisex')], default='unisex', max_length=16, verbose_name='clothing cut'),
|
||
|
),
|
||
|
]
|