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.
35 lines
1.1 KiB
35 lines
1.1 KiB
# Generated by Django 2.1.7 on 2019-07-11 12:18
|
|
|
|
import common.fields.model
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('assets', '0034_auto_20190705_1348'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='adminuser',
|
|
name='private_key',
|
|
field=common.fields.model.EncryptTextField(blank=True, null=True, verbose_name='SSH private key'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='authbook',
|
|
name='private_key',
|
|
field=common.fields.model.EncryptTextField(blank=True, null=True, verbose_name='SSH private key'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='gateway',
|
|
name='private_key',
|
|
field=common.fields.model.EncryptTextField(blank=True, null=True, verbose_name='SSH private key'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='systemuser',
|
|
name='private_key',
|
|
field=common.fields.model.EncryptTextField(blank=True, null=True, verbose_name='SSH private key'),
|
|
),
|
|
]
|