23 lines
686 B
Python
23 lines
686 B
Python
# Generated by Django 3.2.20 on 2023-07-10 17:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('storage', '0006_category_icon_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='category',
|
|
options={'ordering': ['name'], 'verbose_name_plural': 'categories'},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='item',
|
|
name='state',
|
|
field=models.CharField(choices=[('present', 'Present'), ('taken', 'Taken'), ('broken', 'Broken'), ('missing', 'Missing'), ('depleted', 'Depleted')], default='present', max_length=31),
|
|
),
|
|
]
|