21 lines
423 B
Python
21 lines
423 B
Python
# Generated by Django 4.0.8 on 2023-12-25 20:16
|
|
|
|
import accounts.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0014_alter_user_managers'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelManagers(
|
|
name='user',
|
|
managers=[
|
|
('objects', accounts.models.UserManager()),
|
|
],
|
|
),
|
|
]
|