med/users/migrations/0012_auto_20190802_2112.py

26 lines
595 B
Python
Raw Normal View History

2019-08-02 19:14:16 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2019-08-02 19:12
from __future__ import unicode_literals
2019-08-08 10:16:40 +00:00
from django.contrib.auth.models import UserManager
2019-08-02 19:14:16 +00:00
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('users', '0011_auto_20190802_1831'),
]
operations = [
migrations.AlterModelManagers(
name='user',
managers=[
2019-08-08 10:16:40 +00:00
('objects', UserManager()),
2019-08-02 19:14:16 +00:00
],
),
migrations.RemoveField(
model_name='user',
name='state',
),
]