mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-27 07:17:10 +00:00
perf: 优化变量命名
This commit is contained in:
parent
96cd307d1f
commit
c8d54b28e2
4
jms
4
jms
@ -96,7 +96,7 @@ def check_migrations():
|
|||||||
print("You should run ./PROC upgrade first, 请先运行 ./PROC upgrade, 进行表结构变更")
|
print("You should run ./PROC upgrade first, 请先运行 ./PROC upgrade, 进行表结构变更")
|
||||||
|
|
||||||
|
|
||||||
def make_migrations():
|
def perform_db_migrate():
|
||||||
logging.info("Check database structure change ...")
|
logging.info("Check database structure change ...")
|
||||||
os.chdir(os.path.join(BASE_DIR, 'apps'))
|
os.chdir(os.path.join(BASE_DIR, 'apps'))
|
||||||
logging.info("Migrate model change to database ...")
|
logging.info("Migrate model change to database ...")
|
||||||
@ -524,7 +524,7 @@ def show_service_status(s):
|
|||||||
|
|
||||||
def upgrade():
|
def upgrade():
|
||||||
collect_static()
|
collect_static()
|
||||||
make_migrations()
|
perform_db_migrate()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
Loading…
Reference in New Issue
Block a user