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.
26 lines
920 B
26 lines
920 B
# Generated by Django 3.1.13 on 2022-02-17 13:35
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('applications', '0016_auto_20220118_1455'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='account',
|
|
options={'permissions': [('view_applicationaccountsecret', 'Can view application account secret'), ('change_appplicationaccountsecret', 'Can change application account secret')], 'verbose_name': 'Application account'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='applicationuser',
|
|
options={'verbose_name': 'Application user'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='historicalaccount',
|
|
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Application account'},
|
|
),
|
|
]
|