18 lines
387 B
Python
18 lines
387 B
Python
|
# Generated by Django 4.2.16 on 2024-12-03 12:44
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
dependencies = [
|
||
|
("core", "0007_approval"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="berichtsheft",
|
||
|
name="needs_rewrite",
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|