2016-09-12 09:49:57 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-09-12 14:38:30 +02:00
|
|
|
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./module/Monarc/Core/migrations/phinx.php
|
2016-09-12 09:49:57 +02:00
|
|
|
|
2019-09-12 14:38:30 +02:00
|
|
|
if [ -d module/Monarc/BackOffice ]; then
|
|
|
|
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./module/Monarc/BackOffice/migrations/phinx.php
|
2016-09-12 09:49:57 +02:00
|
|
|
fi
|
|
|
|
|
2019-09-12 14:38:30 +02:00
|
|
|
if [ -d module/Monarc/FrontOffice ]; then
|
|
|
|
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./module/Monarc/FrontOffice/migrations/phinx.php
|
2016-09-12 09:49:57 +02:00
|
|
|
fi
|