fixed phing targets for db migrations
parent
00b4e9af91
commit
f7604dfd9c
|
@ -3,9 +3,10 @@ author.name=Pascal Paulis
|
|||
author.email=pascal.paulis@continuousphp.com
|
||||
|
||||
db.host=localhost
|
||||
db.name=monarc
|
||||
db.username=dbuser
|
||||
db.password=123
|
||||
db.name.core=monarc_core
|
||||
db.name.backoffice=monarc_backoffice
|
||||
|
||||
dir.bin=./bin
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<token key="db.host" value="${db.host}"/>
|
||||
<token key="db.username" value="${db.username}"/>
|
||||
<token key="db.password" value="${db.password}"/>
|
||||
<token key="db.name" value="${db.name}"/>
|
||||
<token key="db.name.backoffice" value="${db.name.backoffice}"/>
|
||||
</replacetokens>
|
||||
</filterchain>
|
||||
</loadfile>
|
||||
|
@ -97,8 +97,8 @@
|
|||
</target>
|
||||
|
||||
<target name="db-migration" description="Update the database version">
|
||||
<exec command="${project.basedir}/scripts/client-upgrade-db.sh backoffice ${db.host} ${db.username} ${db.password} ${db.name}" passthru="true"/>
|
||||
<exec command="${project.basedir}/scripts/client-upgrade-db.sh core ${db.host} ${db.username} ${db.password} ${db.name}" passthru="true"/>
|
||||
<exec command="${project.basedir}/scripts/client-upgrade-db.sh backoffice ${db.host} ${db.username} ${db.password} ${db.name.backoffice}" passthru="true"/>
|
||||
<exec command="${project.basedir}/scripts/client-upgrade-db.sh core ${db.host} ${db.username} ${db.password} ${db.name.core}" passthru="true"/>
|
||||
</target>
|
||||
|
||||
<target name="reset-db"
|
||||
|
|
|
@ -8,7 +8,7 @@ return array(
|
|||
'host' => '@db.host@',
|
||||
'user' => '@db.username@',
|
||||
'password' => '@db.password@',
|
||||
'dbname' => '@db.name@',
|
||||
'dbname' => '@db.name.backoffice@',
|
||||
)
|
||||
),
|
||||
'orm_cli' => array(
|
||||
|
@ -16,7 +16,7 @@ return array(
|
|||
'host' => '@db.host@',
|
||||
'user' => '@db.username@',
|
||||
'password' => '@db.password@',
|
||||
'dbname' => '@db.name@',
|
||||
'dbname' => '@db.name.backoffice@',
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue