mirror of
https://github.com/ansible/awx.git
synced 2026-03-11 06:29:31 -02:30
* We have the requirements that users with Tower < 3.0.x must upgrade to 3.0.x before > 3.0.x. Thus, we are save to delete all mongo migration code and deps.
14 lines
236 B
Python
14 lines
236 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0004_v300_fact_changes'),
|
|
]
|
|
|
|
operations = [
|
|
]
|