You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Generated by Django 3.1.13 on 2021-11-04 05:47
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
import django.db.models.deletion
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('assets', '0079_auto_20211102_1922'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='systemuser',
|
|
|
|
name='su_enabled',
|
|
|
|
field=models.BooleanField(default=False, verbose_name='User switch'),
|
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='systemuser',
|
|
|
|
name='su_from',
|
|
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='su_to', to='assets.systemuser', verbose_name='Switch from'),
|
|
|
|
),
|
|
|
|
]
|