# Generated by Django 4.2.2 on 2025-10-20 11:31

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('products', '0003_alter_product_type'),
    ]

    operations = [
        migrations.AddField(
            model_name='product',
            name='default_density',
            field=models.CharField(choices=[('kg/hl', 'KG_PER_HL'), ('lb/bu', 'LB_PER_BU')], default='kg/hl', max_length=50),
        ),
        migrations.AddField(
            model_name='product',
            name='default_temperature',
            field=models.CharField(choices=[('C', 'CELSIUS'), ('F', 'FAHRENHEIT')], default='F', max_length=50),
        ),
    ]
