mirror of
https://github.com/ansible/awx.git
synced 2026-03-02 01:08:48 -03:30
17 lines
368 B
Python
17 lines
368 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
from django.db import migrations
|
|
|
|
import _squashed
|
|
from _squashed_31 import SQUASHED_31
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0004_squashed_v310_release'),
|
|
]
|
|
|
|
replaces = _squashed.replaces(SQUASHED_31)
|
|
operations = _squashed.operations(SQUASHED_31)
|