tag forms (unused for now)
[redakcja.git] / apps / catalogue / migrations / 0009_auto_20161130_1346.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import migrations, models
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('catalogue', '0008_category_dc_tag'),
11     ]
12
13     operations = [
14         migrations.AlterModelOptions(
15             name='category',
16             options={'ordering': ['index']},
17         ),
18         migrations.AlterModelOptions(
19             name='tag',
20             options={'ordering': ['index']},
21         ),
22     ]