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.
23 lines
725 B
23 lines
725 B
# Generated by Django 3.1.14 on 2022-06-29 10:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('applications', '0020_auto_20220316_2028'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='historicalaccount',
|
|
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Application account', 'verbose_name_plural': 'historical Application accounts'},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='historicalaccount',
|
|
name='history_date',
|
|
field=models.DateTimeField(db_index=True),
|
|
),
|
|
]
|