# 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), ), ]