OpenSlides/openslides/users/migrations/0001_initial.py

102 lines
3.9 KiB
Python
Raw Normal View History

2016-03-02 01:29:47 +01:00
# -*- coding: utf-8 -*-
2016-03-06 14:35:49 +01:00
# Generated by Django 1.9.2 on 2016-03-06 14:33
2016-03-02 01:29:47 +01:00
from __future__ import unicode_literals
2015-06-29 13:23:19 +02:00
from django.db import migrations, models
import openslides.utils.models
class Migration(migrations.Migration):
2016-03-02 01:29:47 +01:00
initial = True
2015-06-29 13:23:19 +02:00
dependencies = [
2019-01-06 16:22:33 +01:00
("auth", "0006_require_contenttypes_0002"),
2016-03-02 01:29:47 +01:00
# The next line is not a dependency because we also want to support Django 1.8.
# ('auth', '0007_alter_validators_add_error_messages'),
2015-06-29 13:23:19 +02:00
]
operations = [
migrations.CreateModel(
2019-01-06 16:22:33 +01:00
name="User",
2015-06-29 13:23:19 +02:00
fields=[
2019-01-06 16:22:33 +01:00
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("password", models.CharField(max_length=128, verbose_name="password")),
(
"last_login",
models.DateTimeField(
blank=True, null=True, verbose_name="last login"
),
),
(
"is_superuser",
models.BooleanField(
default=False,
help_text="Designates that this user has all permissions without explicitly assigning them.",
verbose_name="superuser status",
),
),
("username", models.CharField(blank=True, max_length=255, unique=True)),
("first_name", models.CharField(blank=True, max_length=255)),
("last_name", models.CharField(blank=True, max_length=255)),
(
"structure_level",
models.CharField(blank=True, default="", max_length=255),
),
("title", models.CharField(blank=True, default="", max_length=50)),
("about_me", models.TextField(blank=True, default="")),
("comment", models.TextField(blank=True, default="")),
(
"default_password",
models.CharField(blank=True, default="", max_length=100),
),
("is_active", models.BooleanField(default=True)),
("is_present", models.BooleanField(default=False)),
(
"groups",
models.ManyToManyField(
blank=True,
help_text="The groups this user belongs to. A user will get all permissions granted to each of their groups.",
related_name="user_set",
related_query_name="user",
to="auth.Group",
verbose_name="groups",
),
),
(
"user_permissions",
models.ManyToManyField(
blank=True,
help_text="Specific permissions for this user.",
related_name="user_set",
related_query_name="user",
to="auth.Permission",
verbose_name="user permissions",
),
),
2015-06-29 13:23:19 +02:00
],
options={
2019-01-06 16:22:33 +01:00
"permissions": (
("can_see_name", "Can see names 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"),
2015-06-29 13:23:19 +02:00
},
bases=(openslides.utils.models.RESTModelMixin, models.Model),
2019-01-06 16:22:33 +01:00
)
2015-06-29 13:23:19 +02:00
]