vergabe-teilnahme/vergabe_teilnahme/apps/ausschreibungen/migrations/0004_rechtsgrundlage.py

19 lines
544 B
Python
Raw Normal View History

# Generated by Django 6.0.5 on 2026-05-13 22:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ausschreibungen', '0003_referenzen_m2m'),
]
operations = [
migrations.AddField(
model_name='ausschreibung',
name='rechtsgrundlage',
field=models.CharField(blank=True, choices=[('vgv', 'VgV'), ('uvgo', 'UVgO'), ('vob_a', 'VOB/A'), ('sektvo', 'SektVO'), ('gwb', 'GWB'), ('sonstige', 'Sonstige')], max_length=20),
),
]