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.
44 lines
1.5 KiB
44 lines
1.5 KiB
# Generated by Django 3.2.14 on 2022-11-28 10:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('assets', '0112_gateway_to_asset'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='accounttemplate',
|
|
options={'permissions': [('view_accounttemplatesecret', 'Can view asset account template secret'),
|
|
('change_accounttemplatesecret', 'Can change asset account template secret')],
|
|
'verbose_name': 'Account template'},
|
|
),
|
|
migrations.AddField(
|
|
model_name='database',
|
|
name='allow_invalid_cert',
|
|
field=models.BooleanField(default=False, verbose_name='Allow invalid cert'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='database',
|
|
name='ca_cert',
|
|
field=models.TextField(blank=True, verbose_name='CA cert'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='database',
|
|
name='client_cert',
|
|
field=models.TextField(blank=True, verbose_name='Client cert'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='database',
|
|
name='client_key',
|
|
field=models.TextField(blank=True, verbose_name='Client key'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='database',
|
|
name='use_ssl',
|
|
field=models.BooleanField(default=False, verbose_name='Use SSL'),
|
|
),
|
|
]
|