Add OrderPosition.ignore_from_quota_while_blocked (#3119)

This commit is contained in:
Raphael Michel
2023-02-22 12:44:51 +01:00
committed by GitHub
parent 175921fbaf
commit f08333814f
5 changed files with 53 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 3.2.17 on 2023-02-14 10:35
import django.core.serializers.json
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0232_exchangerate'),
]
operations = [
migrations.AddField(
model_name='orderposition',
name='ignore_from_quota_while_blocked',
field=models.BooleanField(default=False),
),
]