Introduce Seat.sorting_rank (#1499)

* Introduce Seat.sorting_rank

* Fix comments

* Comments, for real
This commit is contained in:
Raphael Michel
2019-11-22 13:25:08 +01:00
committed by GitHub
parent 1e63eb743c
commit ee4f75c2fb
3 changed files with 49 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 2.2.4 on 2019-11-22 11:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0140_voucher_seat'),
]
operations = [
migrations.AddField(
model_name='seat',
name='sorting_rank',
field=models.BigIntegerField(default=0),
),
]