CC-5781: Upgrade script for new storage quota implementation

This commit is contained in:
drigato 2014-04-07 15:26:56 -04:00
parent c18c4da629
commit 70e660e7da
1 changed files with 7 additions and 1 deletions

View File

@ -10,13 +10,19 @@ set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library')
)));
/*set_include_path(implode(PATH_SEPARATOR, array(
get_include_path(),
realpath(APPLICATION_PATH . '/../library/propel/runtime/lib')
)));*/
//Propel classes.
set_include_path(APPLICATION_PATH . '/models' . PATH_SEPARATOR . get_include_path());
set_include_path(APPLICATION_PATH . '/models/airtime' . PATH_SEPARATOR . get_include_path());
set_include_path(APPLICATION_PATH . '/models/om' . PATH_SEPARATOR . get_include_path());
require_once 'propel/runtime/lib/Propel.php';
require_once 'CcMusicDirsQuery.php';
require_once 'BaseCcMusicDirsQuery.php';
#require_once 'BaseCcMusicDirsQuery.php';
class StorageQuotaUpgrade
{