From 99883e3fc3928113047255783b0979f856bb723a Mon Sep 17 00:00:00 2001 From: yangyan Date: Thu, 28 Mar 2019 13:21:52 +0800 Subject: fix the bug of database Change-Id: I49130ce16525dd17a6696c3548098ffe6319e210 Issue-ID: VFC-1319 Signed-off-by: yangyan --- docker/instance_init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docker/instance_init.sh') diff --git a/docker/instance_init.sh b/docker/instance_init.sh index 4ead7670..6e51cc17 100755 --- a/docker/instance_init.sh +++ b/docker/instance_init.sh @@ -44,7 +44,7 @@ function create_database { echo $tab1 echo "============" echo "TABLE NOT EXISTS, START MIGRATE" - python $man_path/manage.py makemigrations && python $man_path/manage.py migrate & + python $man_path/manage.py makemigrations database && python $man_path/manage.py migrate & wait tab2=`mysql -u${MYSQL_USER} -p${MYSQL_ROOT_PASSWORD} -P${MYSQL_PORT} -h${MYSQL_IP} -e "SELECT count(TABLE_NAME) FROM information_schema.TABLES WHERE TABLE_SCHEMA='nfvocatalog';"` tab3=`echo $tab2|awk '{print $2}'` -- cgit 1.2.3-korg