CC-2172 : Create Upgrade structure so that a user can upgrade from any version of Airtime properly
This commit is contained in:
parent
8ab78e74ea
commit
f365802ce7
3 changed files with 10 additions and 4 deletions
|
@ -13,7 +13,10 @@ require_once(dirname(__FILE__).'/../../include/AirtimeInstall.php');
|
|||
AirtimeInstall::DbConnect(true);
|
||||
|
||||
echo PHP_EOL."*** Updating Database Tables ***".PHP_EOL;
|
||||
AirtimeInstall::MigrateTables(__DIR__, '20110406182005');
|
||||
$migrations = array('20110406182005');
|
||||
foreach($migrations as $migration) {
|
||||
AirtimeInstall::ExecuteDoctrineMigration(__DIR__, $migration);
|
||||
}
|
||||
|
||||
//setting data for new aggregate show length column.
|
||||
$sql = "SELECT id FROM cc_show_instances";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue