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.
 
 
 
 
 

11 lines
271 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_tests;';
cd apps/advanced/tests/codeception/bin
php yii migrate --interactive=0
cd ../../../../..
fi