Rename squash 310 to 31

This commit is contained in:
Wayne Witzel III 2017-10-31 11:18:31 -04:00
parent fc56a1c170
commit af3e6f792c
No known key found for this signature in database
GPG Key ID: B4F07BDC564D6301
2 changed files with 5 additions and 5 deletions

View File

@ -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)

View File

@ -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']