19 lines
527 B
Python
19 lines
527 B
Python
|
# Generated by Django 3.1.3 on 2020-12-05 15:47
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('users', '0006_remove_base_user_phone'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='base_user',
|
||
|
name='is_superuser',
|
||
|
field=models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status'),
|
||
|
),
|
||
|
]
|