This commit is contained in:
2026-02-17 14:59:55 +01:00
parent 5424d25822
commit e1da4fa041
27 changed files with 17914 additions and 3919 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.1.5 on 2026-02-17 08:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('sheets', '0017_alter_secondtableentry_options'),
]
operations = [
migrations.AddField(
model_name='secondtableentry',
name='nach',
field=models.DecimalField(blank=True, decimal_places=2, max_digits=12, null=True),
),
migrations.AddField(
model_name='secondtableentry',
name='vor',
field=models.DecimalField(blank=True, decimal_places=2, max_digits=12, null=True),
),
]