mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-07-07 07:44:00 +02:00
Swap AbstractBaseUser to AbstractUser
This commit is contained in:
@ -2,12 +2,11 @@
|
||||
# Generated by Django 1.10.7 on 2019-08-02 19:12
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.contrib.auth.models import UserManager
|
||||
from django.db import migrations
|
||||
import users.models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0011_auto_20190802_1831'),
|
||||
]
|
||||
@ -16,7 +15,7 @@ class Migration(migrations.Migration):
|
||||
migrations.AlterModelManagers(
|
||||
name='user',
|
||||
managers=[
|
||||
('objects', users.models.UserManager()),
|
||||
('objects', UserManager()),
|
||||
],
|
||||
),
|
||||
migrations.RemoveField(
|
||||
|
Reference in New Issue
Block a user