diff --git a/backend/right_tree/api/migrations/0009_alter_plant_options.py b/backend/right_tree/api/migrations/0009_alter_plant_options.py new file mode 100644 index 0000000..c781559 --- /dev/null +++ b/backend/right_tree/api/migrations/0009_alter_plant_options.py @@ -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']}, + ), + ]