aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0019_auto_20150507_0048.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/migrations/0019_auto_20150507_0048.py')
-rw-r--r--servo/migrations/0019_auto_20150507_0048.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/servo/migrations/0019_auto_20150507_0048.py b/servo/migrations/0019_auto_20150507_0048.py
new file mode 100644
index 0000000..7314a55
--- /dev/null
+++ b/servo/migrations/0019_auto_20150507_0048.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('servo', '0018_auto_20150505_0020'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='order',
+ options={'ordering': ('-priority', 'id'), 'permissions': (('change_user', 'Can set assignee'), ('change_status', 'Can change status'), ('follow_order', 'Can follow order'), ('copy_order', 'Can copy order'), ('batch_process', 'Can batch process'))},
+ ),
+ ]