Fix #1567 -- Per-subevent availability of items (#2040)

This commit is contained in:
Raphael Michel
2021-04-29 15:34:58 +02:00
committed by GitHub
parent 6447201f9f
commit 4acf660906
18 changed files with 513 additions and 48 deletions

View File

@@ -0,0 +1,33 @@
# Generated by Django 3.0.13 on 2021-04-23 08:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0182_question_valid_file_portrait'),
]
operations = [
migrations.AddField(
model_name='subeventitem',
name='available_from',
field=models.DateTimeField(blank=True, null=True),
),
migrations.AddField(
model_name='subeventitem',
name='available_until',
field=models.DateTimeField(blank=True, null=True),
),
migrations.AddField(
model_name='subeventitemvariation',
name='available_from',
field=models.DateTimeField(blank=True, null=True),
),
migrations.AddField(
model_name='subeventitemvariation',
name='available_until',
field=models.DateTimeField(blank=True, null=True),
),
]