mirror of https://gitlab.federez.net/re2o/re2o
2 changed files with 37 additions and 1 deletions
@ -0,0 +1,36 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2018-04-15 23:07 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations |
|||
|
|||
def rename_permission_soa_to_srv(apps, schema_editor): |
|||
Permission = apps.get_model('auth', 'Permission') |
|||
# The Permission called 'view_soa' but in the Srv object |
|||
try: |
|||
to_rename = Permission.objects.get( |
|||
codename='view_soa', |
|||
content_type__model='srv' |
|||
) |
|||
except Permission.DoesNotExist: |
|||
# The permission is missing so no problem |
|||
pass |
|||
else: |
|||
to_rename.name = 'Peut voir un object srv' |
|||
to_rename.codename = 'view_srv' |
|||
to_rename.save() |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0078_auto_20180415_1252'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.RunPython(rename_permission_soa_to_srv), |
|||
migrations.AlterModelOptions( |
|||
name='srv', |
|||
options={'permissions': (('view_srv', 'Peut voir un objet srv'),)}, |
|||
), |
|||
] |
|||
Loading…
Reference in new issue