-added liquibase support

This commit is contained in:
martin 2011-02-28 13:27:12 -05:00
parent 6f73e6303b
commit 2818cc95b7
1285 changed files with 385703 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
$command = __DIR__."/../library/liquibase/liquibase --driver=org.postgresql.Driver "
."--classpath=".__DIR__."/../library/liquibase/lib/postgresql-9.0-801.jdbc4.jar "
."--changeLogFile=".__DIR__."/upgrade/db.changelog.xml "
."--url=\"jdbc:postgresql://localhost:5432/airtime\" "
."--username=airtime "
."--password=airtime "
."migrate";
system($command);