perf: 优化变量命名

pull/5169/head^2
ibuler 2020-12-03 14:03:42 +08:00 committed by Jiangjie.Bai
parent 96cd307d1f
commit c8d54b28e2
1 changed files with 2 additions and 2 deletions

4
jms
View File

@ -96,7 +96,7 @@ def check_migrations():
print("You should run ./PROC upgrade first, 请先运行 ./PROC upgrade, 进行表结构变更")
def make_migrations():
def perform_db_migrate():
logging.info("Check database structure change ...")
os.chdir(os.path.join(BASE_DIR, 'apps'))
logging.info("Migrate model change to database ...")
@ -524,7 +524,7 @@ def show_service_status(s):
def upgrade():
collect_static()
make_migrations()
perform_db_migrate()
if __name__ == '__main__':