diff --git a/build/deploy/db/deploy-db.sh b/build/deploy/db/deploy-db.sh index e4274f1ca8f..a031b574ef9 100755 --- a/build/deploy/db/deploy-db.sh +++ b/build/deploy/db/deploy-db.sh @@ -98,6 +98,12 @@ if [ $? -ne 0 ]; then exit 11 fi +mysql --user=cloud --password=cloud cloud < create-schema-premium.sql +if [ $? -ne 0 ]; then + printf "Error: Cannot execute create-schema-premium.sql\n" + exit 11 +fi + if [ "$1" != "" ]; then mysql --user=cloud --password=cloud cloud < $1 if [ $? -ne 0 ]; then