Bin
2025-12-16 7423b0c6e1959f30a7e8e453e953310f32ce13c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 3.2.20 on 2023-10-05 23:38
 
from django.db import migrations
import django.db.models.manager
import users.models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('users', '0007_user_is_deleted'),
    ]
 
    operations = [
        migrations.AlterModelManagers(
            name='user',
            managers=[
                ('objects', django.db.models.manager.Manager()),
                # Previously, this migration contained an addition of UserManagerWithDeleted, which has since been
                # removed in order to avoid referencing a non-existent manager.
            ],
        ),
    ]