Add migrations for plant ordering.
This commit is contained in:
parent
044f7c78ea
commit
caedec0a16
1 changed files with 17 additions and 0 deletions
|
@ -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']},
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue