mirror of
https://github.com/ansible/awx.git
synced 2026-09-16 17:00:12 -02:30
17 lines
350 B
Python
17 lines
350 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from awx.main.migrations import _rbac as rbac
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0005_v300_changes'),
|
|
]
|
|
|
|
operations = [
|
|
# This is a placeholder for our future active flag removal work
|
|
]
|