Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
485 B

#!/bin/sh
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping application init on HHVM"
else
mysql -e 'CREATE DATABASE yii2_advanced_acceptance;';
mysql -e 'CREATE DATABASE yii2_advanced_functional;';
mysql -e 'CREATE DATABASE yii2_advanced_unit;';
cd apps/advanced/tests/codeception/bin
php yii_acceptance migrate --interactive=0
php yii_functional migrate --interactive=0
php yii_unit migrate --interactive=0
cd ../../../../..
fi