core: add order to rule

This commit is contained in:
Jens Langhammer
2018-11-25 20:38:49 +01:00
parent 1039555113
commit 6c4e3fde6e
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.1.3 on 2018-11-25 19:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passbook_core', '0002_auto_20181125_1638'),
]
operations = [
migrations.AddField(
model_name='rule',
name='order',
field=models.IntegerField(default=0),
),
]