18 lines
410 B
Python
18 lines
410 B
Python
# Generated by Django 6.0.5 on 2026-05-08 12:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ausschreibungen', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='ausschreibung',
|
|
name='archiviert',
|
|
field=models.BooleanField(db_index=True, default=False),
|
|
),
|
|
]
|