mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-27 04:10:30 +08:00
12 lines
271 B
Bash
Executable File
12 lines
271 B
Bash
Executable File
#!/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
|