19 lines
538 B
Python
19 lines
538 B
Python
|
# Generated by Django 3.1.3 on 2022-11-18 15:20
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('compensation', '0013_auto_20221117_0819'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='compensationaction',
|
||
|
name='unit',
|
||
|
field=models.CharField(blank=True, choices=[('cm', 'cm'), ('m', 'm'), ('m2', 'm²'), ('m3', 'm³'), ('km', 'km'), ('ha', 'ha'), ('pcs', 'Pieces')], max_length=100, null=True),
|
||
|
),
|
||
|
]
|