bump partition migration

This commit is contained in:
Jim Ladd 2021-03-11 13:18:11 -08:00
parent a1d1e70e43
commit 14b610dabf
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ class FakeAddField(migrations.AddField):
class Migration(migrations.Migration):
dependencies = [
('main', '0129_unifiedjob_installed_collections'),
('main', '0130_ee_polymorphic_set_null'),
]
operations = [

View File

@ -212,7 +212,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='0130_event_partitions'
app='main', name='0131_event_partitions'
).first().applied