From 78565ffd258082b04616370249be364100d03857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Norman=20J=C3=A4ckel?= Date: Sun, 6 Mar 2016 14:35:49 +0100 Subject: [PATCH] Updated migrations. --- openslides/users/migrations/0001_initial.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openslides/users/migrations/0001_initial.py b/openslides/users/migrations/0001_initial.py index 5f0357903..2df42c281 100644 --- a/openslides/users/migrations/0001_initial.py +++ b/openslides/users/migrations/0001_initial.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Generated by Django 1.9.2 on 2016-03-02 01:22 +# Generated by Django 1.9.2 on 2016-03-06 14:33 from __future__ import unicode_literals from django.db import migrations, models @@ -54,12 +54,12 @@ class Migration(migrations.Migration): verbose_name='user permissions')), ], options={ - 'ordering': ('last_name', 'first_name', 'username'), - 'default_permissions': (), 'permissions': ( ('can_see_name', 'Can see names of users'), - ('can_see_extra_data', 'Can see extra data of users'), + ('can_see_extra_data', 'Can see extra data of users (e.g. present and comment)'), ('can_manage', 'Can manage users')), + 'default_permissions': (), + 'ordering': ('last_name', 'first_name', 'username'), }, bases=(openslides.utils.models.RESTModelMixin, models.Model), ),