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.
29 lines
668 B
29 lines
668 B
# Generated by Django 2.1.7 on 2019-06-25 03:05
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0021_auto_20190625_1104'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='user',
|
|
old_name='_otp_secret_key',
|
|
new_name='otp_secret_key',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='user',
|
|
old_name='_private_key',
|
|
new_name='private_key',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='user',
|
|
old_name='_public_key',
|
|
new_name='public_key',
|
|
),
|
|
]
|