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.
28 lines
605 B
28 lines
605 B
# -*- coding: utf-8 -*- |
|
# Generated by Django 1.11 on 2018-01-11 06:07 |
|
from __future__ import unicode_literals |
|
|
|
from django.db import migrations |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('common', '0001_initial'), |
|
] |
|
|
|
operations = [ |
|
migrations.RenameModel( |
|
old_name='Settings', |
|
new_name='Setting', |
|
), |
|
migrations.AlterModelManagers( |
|
name='setting', |
|
managers=[ |
|
], |
|
), |
|
migrations.AlterModelTable( |
|
name='setting', |
|
table='settings', |
|
), |
|
]
|
|
|