OpenSlides/server/openslides/users/migrations/0016_remove_user_ordering.py
Finn Stutzenstein 8049bfa91e
Performance improvements for OS3+
- Cleans up log messages in the client
- Refactored the autoupdate bundle code into an own file
- Added bulk creates for History in Postgresql. This is the only database system
  that supports returning all ids whan multiple elements are inserted. We can
  make usage out of it.
- Added a `disable_history`, that is request-wide
- Disabled history on poll vote requests
- Removed unnecessary user ordering
- Reduced the queries for creating motion vote objects by one
- removed final_data: This was not prefetched. Using the normal data collection
  the data is prefetched
- removed unnecessary user query if vore delegation is not used
2021-01-21 12:53:51 +01:00

29 lines
801 B
Python

# Generated by Django 2.2.17 on 2021-01-20 14:33
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("users", "0015_user_vote_delegated_to"),
]
operations = [
migrations.AlterModelOptions(
name="user",
options={
"default_permissions": (),
"permissions": (
("can_see_name", "Can see names of users"),
(
"can_see_extra_data",
"Can see extra data of users (e.g. email and comment)",
),
("can_change_password", "Can change its own password"),
("can_manage", "Can manage users"),
),
},
),
]