bump migrations

This commit is contained in:
Chris Meyers 2021-05-06 15:06:20 -04:00 committed by Jim Ladd
parent 1c97b9a046
commit 6ce227a6b6
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', '0138_custom_inventory_scripts_removal'),
('main', '0140_rename'),
]
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='0139_event_partitions').first().applied
return MigrationRecorder.Migration.objects.filter(app='main', name='0141_event_partitions').first().applied
@memoize()