Fix the migration of the groups.

Fixes #2915
This commit is contained in:
Oskar Hahn 2017-01-27 11:59:31 +01:00
parent 872f05ec31
commit 6b5c329605

View File

@ -8,6 +8,19 @@ import openslides.users.models
import openslides.utils.models
def create_openslides_groups(apps, schema_editor):
"""
Creates the users.models.Group objects for each existing
django.contrib.auth.models.Group object.
"""
# We get the model from the versioned app registry;
# if we directly import it, it will be the wrong version.
DjangoGroup = apps.get_model('auth', 'Group')
Group = apps.get_model('users', 'Group')
for group in DjangoGroup.objects.all():
Group.objects.create(group_ptr_id=group.pk, name=group.name)
class Migration(migrations.Migration):
dependencies = [
@ -35,4 +48,7 @@ class Migration(migrations.Migration):
('objects', openslides.users.models.GroupManager()),
],
),
migrations.RunPython(
create_openslides_groups,
),
]