mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 09:12:30 +02:00
This will prevent those weird missing UserProfile and AuthGroup errors. Add logging to authentication signals. Correct reverse migration authservicesinfo creation. Rename proxy models so they look better on the admin site.
37 lines
941 B
Python
37 lines
941 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.5 on 2017-09-28 02:16
|
|
from __future__ import unicode_literals
|
|
|
|
import django.contrib.auth.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('auth', '0008_alter_user_username_max_length'),
|
|
('groupmanagement', '0006_request_groups_perm'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Group',
|
|
fields=[
|
|
],
|
|
options={
|
|
'verbose_name': 'group',
|
|
'indexes': [],
|
|
'proxy': True,
|
|
'verbose_name_plural': 'groups',
|
|
},
|
|
bases=('auth.group',),
|
|
managers=[
|
|
('objects', django.contrib.auth.models.GroupManager()),
|
|
],
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='grouprequest',
|
|
name='main_char',
|
|
),
|
|
]
|