yii-dbmigrations

A database migrations engine for the Yii framework
1 review   downloaded 485 times
created by pclaerhout, last updated on November 14, 2009
#1093
Exactly what I was looking for
by mintao at 2:41pm on February 10, 2010.

Thank you for this great extension. This prevented me from learning java and defining thousands of misterious xml definition files to use "ant".

For using yii-dbmigration under 1.1.1 I had to change a singe line in the CDbMigrationEngine.php in line 118

from

// Check if a database connection was configured
try {
    Yii::app()->db;
} catch (Exception $e) {
    throw new CDbMigrationEngineException(
        'Database configuration is missing in your configuration file.'
    );
}

to

// Check if a database connection was configured
if (!isset(Yii::app()->db)) {
    throw new CDbMigrationEngineException(
        'Database configuration is missing in your configuration file.'
    );
}

New Review

Please login first.