bump migration

This commit is contained in:
Jim Ladd 2021-05-12 12:14:44 -07:00
parent 7b188aafea
commit ef9f9129ba
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ class FakeAddField(migrations.AddField):
class Migration(migrations.Migration):
dependencies = [
('main', '0140_rename'),
('main', '0141_remove_isolated_instances'),
]
operations = [

View File

@ -213,7 +213,7 @@ def memoize_delete(function_name):
def get_event_partition_epoch():
from django.db.migrations.recorder import MigrationRecorder
return MigrationRecorder.Migration.objects.filter(app='main', name='0141_event_partitions').first().applied
return MigrationRecorder.Migration.objects.filter(app='main', name='0142_event_partitions').first().applied
@memoize()