mirror of
https://github.com/ansible/awx.git
synced 2026-03-19 09:57:33 -02:30
Renamed rbac migrations to be after the notification and fact migrations
This commit is contained in:
16
awx/main/migrations/0005_v300_active_field_changes.py
Normal file
16
awx/main/migrations/0005_v300_active_field_changes.py
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# -*- 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', '0004_v300_changes'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
# This is a placeholder for our future active flag removal work
|
||||||
|
]
|
||||||
@@ -14,7 +14,7 @@ class Migration(migrations.Migration):
|
|||||||
('taggit', '0002_auto_20150616_2121'),
|
('taggit', '0002_auto_20150616_2121'),
|
||||||
('contenttypes', '0002_remove_content_type_name'),
|
('contenttypes', '0002_remove_content_type_name'),
|
||||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||||
('main', '0002_v300_changes'),
|
('main', '0005_v300_active_field_changes'),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
@@ -8,7 +8,7 @@ from django.db import migrations
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('main', '0003_rbac_changes'),
|
('main', '0006_v300_rbac_changes'),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
Reference in New Issue
Block a user