diff --git a/awx/main/migrations/0136_event_partitions.py b/awx/main/migrations/0137_event_partitions.py similarity index 99% rename from awx/main/migrations/0136_event_partitions.py rename to awx/main/migrations/0137_event_partitions.py index 0f4059df4d..1cff800ef9 100644 --- a/awx/main/migrations/0136_event_partitions.py +++ b/awx/main/migrations/0137_event_partitions.py @@ -64,7 +64,7 @@ class FakeAddField(migrations.AddField): class Migration(migrations.Migration): dependencies = [ - ('main', '0135_schedule_sort_fallback_to_id'), + ('main', '0136_scm_track_submodules'), ] operations = [ diff --git a/awx/main/utils/common.py b/awx/main/utils/common.py index 7a20ec7e75..0548bca58b 100644 --- a/awx/main/utils/common.py +++ b/awx/main/utils/common.py @@ -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='0136_event_partitions').first().applied + return MigrationRecorder.Migration.objects.filter(app='main', name='0137_event_partitions').first().applied @memoize()