20 lines
549 B
Python
20 lines
549 B
Python
# Generated by Django 5.2.1 on 2025-07-08 13:18
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sheets', '0002_remove_secondtableentry_age_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='secondtableentry',
|
|
name='lhe_output',
|
|
field=models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True, validators=[django.core.validators.MinValueValidator(0)]),
|
|
),
|
|
]
|