alpinesmuseum-public/catalog/migrations/0042_comment_labelled.py
2022-09-23 07:38:37 +05:30

18 lines
562 B
Python

# Generated by Django 2.2.6 on 2020-01-27 09:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('catalog', '0041_description_nullable'),
]
operations = [
migrations.AlterField(
model_name='comment',
name='status',
field=models.CharField(choices=[('1_added', 'Added'), ('2_validated', 'Validated'), ('4_labelled', 'Labelled'), ('3_refused', 'Refused')], db_index=True, default='1_added', max_length=15, verbose_name='status'),
),
]