bump partition migration to 135

This commit is contained in:
Jim Ladd
2021-03-24 11:59:53 -07:00
parent 74a0c5bac5
commit 6b4effc85a
2 changed files with 8 additions and 24 deletions

View File

@@ -211,9 +211,8 @@ def memoize_delete(function_name):
@memoize(ttl=3600 * 24) # in practice, we only need this to load once at process startup time
def get_event_partition_epoch():
from django.db.migrations.recorder import MigrationRecorder
return MigrationRecorder.Migration.objects.filter(
app='main', name='0132_event_partitions'
).first().applied
return MigrationRecorder.Migration.objects.filter(app='main', name='0135_event_partitions').first().applied
@memoize()