19 lines
417 B
Python
19 lines
417 B
Python
import apps.users.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("users", "0007_user_is_mobile_verified_user_mobile_alter_user_email_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelManagers(
|
|
name="user",
|
|
managers=[
|
|
("objects", apps.users.models.UserManager()),
|
|
],
|
|
),
|
|
]
|