Add migrations for plant ordering.

This commit is contained in:
Dana Lambert 2021-11-18 14:01:47 +13:00 committed by Alistair McIntyre
parent 044f7c78ea
commit caedec0a16

View file

@ -0,0 +1,17 @@
# Generated by Django 3.2.8 on 2021-11-18 00:53
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('api', '0008_alter_zone_redirect_habitat'),
]
operations = [
migrations.AlterModelOptions(
name='plant',
options={'ordering': ['stage', 'name', 'commonname', 'synonym']},
),
]