From c3144dc4d367cd6f9a107effa66427d767fbbcad Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Mon, 18 Apr 2016 16:26:11 -0400 Subject: [PATCH] benign 0008 migration change to make makemigrations happy --- awx/main/migrations/0008_v300_rbac_changes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/migrations/0008_v300_rbac_changes.py b/awx/main/migrations/0008_v300_rbac_changes.py index 4b87865c5f..0cd6abca3c 100644 --- a/awx/main/migrations/0008_v300_rbac_changes.py +++ b/awx/main/migrations/0008_v300_rbac_changes.py @@ -284,7 +284,7 @@ class Migration(migrations.Migration): migrations.AddField( model_name='project', name='read_role', - field=awx.main.fields.ImplicitRoleField(related_name='+', role_description=b'Read access to this project', parent_role=[b'auditor_role', b'scm_update_role', b'member_role'], to='main.Role', role_name=b'Project Read Access', null=b'True'), + field=awx.main.fields.ImplicitRoleField(related_name='+', role_description=b'Read access to this project', parent_role=[b'member_role', b'auditor_role', b'scm_update_role'], to='main.Role', role_name=b'Project Read Access', null=b'True'), ), migrations.AddField( model_name='role',