Allow to manually exclude quotas from calendar availability

This commit is contained in:
Raphael Michel
2021-05-27 12:05:03 +02:00
parent 49a9b71ea3
commit 93da4801db
9 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.3 on 2021-05-27 09:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0189_auto_20210525_1311'),
]
operations = [
migrations.AddField(
model_name='quota',
name='ignore_for_event_availability',
field=models.BooleanField(default=False),
),
]