Skip to content

Commit

Permalink
Update name of data migration method
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbydesign committed Jan 31, 2020
1 parent dba0ad9 commit 1cefbb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rbac/management/migrations/0013_auto_20200128_2030.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from django.db import migrations


def remove_catalog_platform_default_role(apps, schema_editor):
def remove_unnecessary_platform_default_role(apps, schema_editor):
role_names_to_remove = [
'Ansible Automation Access',
'Ansible Hub Access',
Expand All @@ -23,5 +23,5 @@ class Migration(migrations.Migration):
]

operations = [
migrations.RunPython(remove_catalog_platform_default_role),
migrations.RunPython(remove_unnecessary_platform_default_role),
]

0 comments on commit 1cefbb8

Please sign in to comment.