19 lines
390 B
Python
19 lines
390 B
Python
|
# Generated by Django 3.2.9 on 2021-12-21 07:01
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('users', '0003_alter_user_reset_code'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='user',
|
||
|
name='is_active',
|
||
|
field=models.BooleanField(default=True),
|
||
|
),
|
||
|
]
|