mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 07:04:45 -03:30
17 lines
488 B
Python
17 lines
488 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [('conf', '0003_v310_JSONField_changes')]
|
|
|
|
operations = [
|
|
# This list is intentionally empty.
|
|
# Tower 3.2 included several data migrations that are no longer
|
|
# necessary (this list is now empty because Tower 3.2 is past EOL and
|
|
# cannot be directly upgraded to modern versions of Tower)
|
|
]
|