From: yangyan Date: Thu, 28 Mar 2019 05:20:35 +0000 (+0800) Subject: fix the bug of database X-Git-Tag: 1.3.0~115 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F49%2F83549%2F1;p=vfc%2Fgvnfm%2Fvnflcm.git fix the bug of database Change-Id: I1008ec3efa89a83ec3372cf14fbefa03b731e561 Issue-ID: VFC-1319 Signed-off-by: yangyan --- diff --git a/lcm/docker/instance_init.sh b/lcm/docker/instance_init.sh index 46a3db07..125896a5 100755 --- a/lcm/docker/instance_init.sh +++ b/lcm/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='gvnfm';"` tab3=`echo $tab2|awk '{print $2}'`