remove unrelated field from ask_skip_tags_on_launch migration and update

migration and access.py changes to not conflict with other changes
This commit is contained in:
AlanCoding 2016-08-01 16:23:47 -04:00
parent bedcdadcfc
commit c6ecdbbfc1

View File

@ -8,7 +8,7 @@ import awx.main.fields
class Migration(migrations.Migration):
dependencies = [
('main', '0026_v300_credential_unique'),
('main', '0028_v300_org_team_cascade'),
]
operations = [
@ -17,9 +17,4 @@ class Migration(migrations.Migration):
name='ask_skip_tags_on_launch',
field=models.BooleanField(default=False),
),
migrations.AlterField(
model_name='credential',
name='read_role',
field=awx.main.fields.ImplicitRoleField(related_name='+', parent_role=[b'singleton:system_auditor', b'organization.auditor_role', b'use_role', b'admin_role'], to='main.Role', null=b'True'),
),
]