Add SubEvent.last_modified

This commit is contained in:
Raphael Michel
2020-10-15 18:32:10 +02:00
parent b4a7729cb5
commit bf59ce2661
7 changed files with 52 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.0.9 on 2020-10-15 16:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0163_device_security_profile'),
]
operations = [
migrations.AddField(
model_name='subevent',
name='last_modified',
field=models.DateTimeField(auto_now=True, db_index=True),
),
]