mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Move quota cache from database to redis (#2010)
This commit is contained in:
29
src/pretix/base/migrations/0180_auto_20210324_1309.py
Normal file
29
src/pretix/base/migrations/0180_auto_20210324_1309.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 3.0.12 on 2021-03-24 13:09
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('pretixbase', '0179_auto_20210311_1653'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='quota',
|
||||
name='cached_availability_number',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='quota',
|
||||
name='cached_availability_paid_orders',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='quota',
|
||||
name='cached_availability_state',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='quota',
|
||||
name='cached_availability_time',
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user