mirror of https://github.com/jumpserver/jumpserver
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.
24 lines
624 B
24 lines
624 B
# Generated by Django 3.2.14 on 2023-02-03 04:01
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0041_auto_20221220_1956'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='date_updated',
|
|
field=models.DateTimeField(auto_now=True, verbose_name='Date updated'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='updated_by',
|
|
field=models.CharField(blank=True, default='', max_length=30, verbose_name='Updated by'),
|
|
),
|
|
]
|