forked from DGNum/gestioCOF
5502c6876a
- Define default permissions of kfet models. - Unused default permissions are deleted. - `kfet.manage_perms` is now splitted as `kfetauth.(view|add|change)_group` permissions.
31 lines
776 B
Python
31 lines
776 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
def existing_groups(apps, schema_editor):
|
|
Group = apps.get_model('auth', 'Group')
|
|
KFetGroup = apps.get_model('kfetauth', 'Group')
|
|
|
|
for group in Group.objects.filter(name__icontains='K-Fêt'):
|
|
kf_group = KFetGroup(group_ptr=group, pk=group.pk, name=group.name)
|
|
kf_group.save()
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
"""
|
|
Data migration.
|
|
|
|
Previously, K-Fêt groups were identified with the presence of 'K-Fêt' in
|
|
their name.
|
|
"""
|
|
|
|
dependencies = [
|
|
('kfetauth', '0001_initial'),
|
|
('auth', '0006_require_contenttypes_0002'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(existing_groups),
|
|
]
|