Add meta tags to models

This commit is contained in:
Pavle Portic 2019-03-24 21:34:04 +01:00
parent 983d3a9526
commit 8ff6aaf70e
Signed by: TheEdgeOfRage
GPG Key ID: 6758ACE46AA2A849
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# Generated by Django 2.1.7 on 2019-03-24 20:33
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('perks', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='perk',
options={'ordering': ('name',)},
),
migrations.AlterModelOptions(
name='tree',
options={'ordering': ('name',)},
),
]