19 lines
451 B
Python
19 lines
451 B
Python
![]() |
# Generated by Django 5.1.5 on 2025-05-23 09:32
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('user', '0004_user_is_active_user_is_staff'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='user',
|
||
|
name='is_superuser',
|
||
|
field=models.BooleanField(default=False, verbose_name='超级用户状态'),
|
||
|
),
|
||
|
]
|