Update update-all with phinx migrations
parent
e009f03b43
commit
4acfcb4cd1
|
@ -32,4 +32,13 @@ return array(
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
|
|
||||||
|
'languages' => [
|
||||||
|
1 => 'Français',
|
||||||
|
2 => 'English',
|
||||||
|
3 => 'Deutsch'
|
||||||
|
],
|
||||||
|
|
||||||
|
'defaultLanguageIndex' => 1
|
||||||
);
|
);
|
||||||
|
|
|
@ -11,12 +11,16 @@ pull_if_exists() {
|
||||||
|
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
php composer.phar update
|
php composer.phar update -o
|
||||||
|
|
||||||
|
|
||||||
pull_if_exists module/MonarcCore
|
pull_if_exists module/MonarcCore
|
||||||
pull_if_exists module/MonarcBO
|
pull_if_exists module/MonarcBO
|
||||||
pull_if_exists node_modules/ng_backoffice
|
pull_if_exists node_modules/ng_backoffice
|
||||||
|
|
||||||
|
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./module/MonarcCore/migrations/phinx.php
|
||||||
|
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./module/MonarcBO/migrations/phinx.php
|
||||||
|
|
||||||
if [ -d node_modules/ng_backoffice ]; then
|
if [ -d node_modules/ng_backoffice ]; then
|
||||||
cd node_modules/ng_backoffice
|
cd node_modules/ng_backoffice
|
||||||
npm install
|
npm install
|
||||||
|
|
Loading…
Reference in New Issue