From af3e6f792c3faf1bd70bde01865e01f49b7b9c0a Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Tue, 31 Oct 2017 11:18:31 -0400 Subject: [PATCH] Rename squash 310 to 31 --- awx/main/migrations/0005_squashed_v310_v313_updates.py | 6 +++--- awx/main/migrations/{_squashed_310.py => _squashed_31.py} | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) rename awx/main/migrations/{_squashed_310.py => _squashed_31.py} (98%) diff --git a/awx/main/migrations/0005_squashed_v310_v313_updates.py b/awx/main/migrations/0005_squashed_v310_v313_updates.py index e49b6b227c..3a2e05e270 100644 --- a/awx/main/migrations/0005_squashed_v310_v313_updates.py +++ b/awx/main/migrations/0005_squashed_v310_v313_updates.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals from django.db import migrations import _squashed -from _squashed_310 import SQUASHED_310 +from _squashed_31 import SQUASHED_31 class Migration(migrations.Migration): @@ -12,5 +12,5 @@ class Migration(migrations.Migration): ('main', '0004_squashed_v310_release'), ] - replaces = _squashed.replaces(SQUASHED_310) - operations = _squashed.operations(SQUASHED_310) + replaces = _squashed.replaces(SQUASHED_31) + operations = _squashed.operations(SQUASHED_31) diff --git a/awx/main/migrations/_squashed_310.py b/awx/main/migrations/_squashed_31.py similarity index 98% rename from awx/main/migrations/_squashed_310.py rename to awx/main/migrations/_squashed_31.py index 0813c19c3e..3c43c26a48 100644 --- a/awx/main/migrations/_squashed_310.py +++ b/awx/main/migrations/_squashed_31.py @@ -3,7 +3,7 @@ from django.db import ( models, ) -SQUASHED_310 = { +SQUASHED_31 = { '0035_v310_remove_tower_settings': [ # Remove Tower settings, these settings are now in separate awx.conf app. migrations.RemoveField( @@ -47,4 +47,4 @@ SQUASHED_310 = { ], } -__all__ = ['SQUASHED_310'] +__all__ = ['SQUASHED_31']