-database tables to drop are generated dynamically
This commit is contained in:
martin 2011-03-11 13:59:20 -05:00
parent a947306222
commit cbb534dfda
3 changed files with 21 additions and 139 deletions

View file

@ -188,3 +188,9 @@ function doctrineMigrateTables($dir){
$command = "php $dir/../library/doctrine/migrations/doctrine-migrations.phar --configuration=$dir/DoctrineMigrations/migrations.xml --db-configuration=$dir/../library/doctrine/migrations/migrations-db.php --no-interaction migrations:migrate";
system($command);
}
function airtime_uninstall_delete_files($p_path)
{
$command = "rm -rf $p_path";
exec($command);
}