From: yangyan Date: Thu, 28 Mar 2019 05:21:52 +0000 (+0800) Subject: fix the bug of database X-Git-Tag: 1.3.0~65 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=99883e3fc3928113047255783b0979f856bb723a;p=vfc%2Fnfvo%2Fcatalog.git fix the bug of database Change-Id: I49130ce16525dd17a6696c3548098ffe6319e210 Issue-ID: VFC-1319 Signed-off-by: yangyan --- 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}'`