From: yangyan Date: Thu, 28 Mar 2019 05:16:23 +0000 (+0800) Subject: fix the bug of database X-Git-Tag: 1.3.0~96 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=63d04bbd33ec57ef79c36f96abea5f6a35d0e739;p=vfc%2Fnfvo%2Flcm.git fix the bug of database Change-Id: I0263eb86928eb331bb14bb8318c6777ab0447139 Issue-ID: VFC-1319 Signed-off-by: yangyan --- diff --git a/docker/instance_init.sh b/docker/instance_init.sh index 7226e16c..de4175b3 100755 --- a/docker/instance_init.sh +++ b/docker/instance_init.sh @@ -40,7 +40,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='vfcnfvolcm';"` tab3=`echo $tab2|awk '{print $2}'`