CDbMigration
Package | system.db |
---|---|
Inheritance | abstract class CDbMigration » CComponent |
Since | 1.1.6 |
Version | $Id: CDbMigration.php 3514 2011-12-27 20:28:26Z alexander.makarow $ |
Source Code | framework/db/CDbMigration.php |
CDbMigration is designed to be used together with the "yiic migrate" command.
Each child class of CDbMigration represents an individual database migration which is identified by the child class name.
Within each migration, the up method contains the logic for "upgrading" the database used in an application; while the down method contains "downgrading" logic. The "yiic migrate" command manages all available migrations in an application.
CDbMigration provides a set of convenient methods for manipulating database data and schema. For example, the insert method can be used to easily insert a row of data into a database table; the createTable method can be used to create a database table. Compared with the same methods in CDbCommand, these methods will display extra information showing the method parameters and execution time, which may be useful when applying migrations.
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
dbConnection | CDbConnection | Returns the currently active database connection. | CDbMigration |
Public Methods
Method | Description | Defined By |
---|---|---|
__call() | Calls the named method which is not a class method. | CComponent |
__get() | Returns a property value, an event handler list or a behavior based on its name. | CComponent |
__isset() | Checks if a property value is null. | CComponent |
__set() | Sets value of a component property. | CComponent |
__unset() | Sets a component property to be null. | CComponent |
addColumn() | Builds and executes a SQL statement for adding a new DB column. | CDbMigration |
addForeignKey() | Builds a SQL statement for adding a foreign key constraint to an existing table. | CDbMigration |
alterColumn() | Builds and executes a SQL statement for changing the definition of a column. | CDbMigration |
asa() | Returns the named behavior object. | CComponent |
attachBehavior() | Attaches a behavior to this component. | CComponent |
attachBehaviors() | Attaches a list of behaviors to the component. | CComponent |
attachEventHandler() | Attaches an event handler to an event. | CComponent |
canGetProperty() | Determines whether a property can be read. | CComponent |
canSetProperty() | Determines whether a property can be set. | CComponent |
createIndex() | Builds and executes a SQL statement for creating a new index. | CDbMigration |
createTable() | Builds and executes a SQL statement for creating a new DB table. | CDbMigration |
delete() | Creates and executes a DELETE SQL statement. | CDbMigration |
detachBehavior() | Detaches a behavior from the component. | CComponent |
detachBehaviors() | Detaches all behaviors from the component. | CComponent |
detachEventHandler() | Detaches an existing event handler. | CComponent |
disableBehavior() | Disables an attached behavior. | CComponent |
disableBehaviors() | Disables all behaviors attached to this component. | CComponent |
down() | This method contains the logic to be executed when removing this migration. | CDbMigration |
dropColumn() | Builds and executes a SQL statement for dropping a DB column. | CDbMigration |
dropForeignKey() | Builds a SQL statement for dropping a foreign key constraint. | CDbMigration |
dropIndex() | Builds and executes a SQL statement for dropping an index. | CDbMigration |
dropTable() | Builds and executes a SQL statement for dropping a DB table. | CDbMigration |
enableBehavior() | Enables an attached behavior. | CComponent |
enableBehaviors() | Enables all behaviors attached to this component. | CComponent |
evaluateExpression() | Evaluates a PHP expression or callback under the context of this component. | CComponent |
execute() | Executes a SQL statement. | CDbMigration |
getDbConnection() | Returns the currently active database connection. | CDbMigration |
getEventHandlers() | Returns the list of attached event handlers for an event. | CComponent |
hasEvent() | Determines whether an event is defined. | CComponent |
hasEventHandler() | Checks whether the named event has attached handlers. | CComponent |
hasProperty() | Determines whether a property is defined. | CComponent |
insert() | Creates and executes an INSERT SQL statement. | CDbMigration |
raiseEvent() | Raises an event. | CComponent |
refreshTableSchema() | Refreshed schema cache for a table | CDbMigration |
renameColumn() | Builds and executes a SQL statement for renaming a column. | CDbMigration |
renameTable() | Builds and executes a SQL statement for renaming a DB table. | CDbMigration |
safeDown() | This method contains the logic to be executed when removing this migration. | CDbMigration |
safeUp() | This method contains the logic to be executed when applying this migration. | CDbMigration |
setDbConnection() | Sets the currently active database connection. | CDbMigration |
truncateTable() | Builds and executes a SQL statement for truncating a DB table. | CDbMigration |
up() | This method contains the logic to be executed when applying this migration. | CDbMigration |
update() | Creates and executes an UPDATE SQL statement. | CDbMigration |
Property Details
Returns the currently active database connection. By default, the 'db' application component will be returned and activated. You can call setDbConnection to switch to a different database connection. Methods such as insert, createTable will use this database connection to perform DB queries.
Method Details
public void addColumn(string $table, string $column, string $type)
| ||
$table | string | the table that the new column will be added to. The table name will be properly quoted by the method. |
$column | string | the name of the new column. The name will be properly quoted by the method. |
$type | string | the column type. The getColumnType method will be invoked to convert abstract column type (if any) into the physical one. Anything that is not recognized as abstract type will be kept in the generated SQL. For example, 'string' will be turned into 'varchar(255)', while 'string not null' will become 'varchar(255) not null'. |
public function addColumn($table, $column, $type)
{
echo " > add column $column $type to table $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->addColumn($table, $column, $type);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for adding a new DB column.
public void addForeignKey(string $name, string $table, string $columns, string $refTable, string $refColumns, string $delete=NULL, string $update=NULL)
| ||
$name | string | the name of the foreign key constraint. |
$table | string | the table that the foreign key constraint will be added to. |
$columns | string | the name of the column to that the constraint will be added on. If there are multiple columns, separate them with commas. |
$refTable | string | the table that the foreign key references to. |
$refColumns | string | the name of the column that the foreign key references to. If there are multiple columns, separate them with commas. |
$delete | string | the ON DELETE option. Most DBMS support these options: RESTRICT, CASCADE, NO ACTION, SET DEFAULT, SET NULL |
$update | string | the ON UPDATE option. Most DBMS support these options: RESTRICT, CASCADE, NO ACTION, SET DEFAULT, SET NULL |
public function addForeignKey($name, $table, $columns, $refTable, $refColumns, $delete=null, $update=null)
{
echo " > add foreign key $name: $table ($columns) references $refTable ($refColumns) ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->addForeignKey($name, $table, $columns, $refTable, $refColumns, $delete, $update);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds a SQL statement for adding a foreign key constraint to an existing table. The method will properly quote the table and column names.
public void alterColumn(string $table, string $column, string $type)
| ||
$table | string | the table whose column is to be changed. The table name will be properly quoted by the method. |
$column | string | the name of the column to be changed. The name will be properly quoted by the method. |
$type | string | the new column type. The getColumnType method will be invoked to convert abstract column type (if any) into the physical one. Anything that is not recognized as abstract type will be kept in the generated SQL. For example, 'string' will be turned into 'varchar(255)', while 'string not null' will become 'varchar(255) not null'. |
public function alterColumn($table, $column, $type)
{
echo " > alter column $column in table $table to $type ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->alterColumn($table, $column, $type);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for changing the definition of a column.
public void createIndex(string $name, string $table, string $column, boolean $unique=false)
| ||
$name | string | the name of the index. The name will be properly quoted by the method. |
$table | string | the table that the new index will be created for. The table name will be properly quoted by the method. |
$column | string | the column(s) that should be included in the index. If there are multiple columns, please separate them by commas. The column names will be properly quoted by the method. |
$unique | boolean | whether to add UNIQUE constraint on the created index. |
public function createIndex($name, $table, $column, $unique=false)
{
echo " > create".($unique ? ' unique':'')." index $name on $table ($column) ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->createIndex($name, $table, $column, $unique);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for creating a new index.
public void createTable(string $table, array $columns, string $options=NULL)
| ||
$table | string | the name of the table to be created. The name will be properly quoted by the method. |
$columns | array | the columns (name=>definition) in the new table. |
$options | string | additional SQL fragment that will be appended to the generated SQL. |
public function createTable($table, $columns, $options=null)
{
echo " > create table $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->createTable($table, $columns, $options);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for creating a new DB table.
The columns in the new table should be specified as name-definition pairs (e.g. 'name'=>'string'),
where name stands for a column name which will be properly quoted by the method, and definition
stands for the column type which can contain an abstract DB type.
The getColumnType method will be invoked to convert any abstract type into a physical one.
If a column is specified with definition only (e.g. 'PRIMARY KEY (name, type)'), it will be directly
inserted into the generated SQL.
public void delete(string $table, mixed $conditions='', array $params=array (
))
| ||
$table | string | the table where the data will be deleted from. |
$conditions | mixed | the conditions that will be put in the WHERE part. Please refer to CDbCommand::where on how to specify conditions. |
$params | array | the parameters to be bound to the query. |
public function delete($table, $conditions='', $params=array())
{
echo " > delete from $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->delete($table, $conditions, $params);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Creates and executes a DELETE SQL statement.
public boolean down()
| ||
{return} | boolean |
public function down()
{
$transaction=$this->getDbConnection()->beginTransaction();
try
{
if($this->safeDown()===false)
{
$transaction->rollBack();
return false;
}
$transaction->commit();
}
catch(Exception $e)
{
echo "Exception: ".$e->getMessage().' ('.$e->getFile().':'.$e->getLine().")\n";
echo $e->getTraceAsString()."\n";
$transaction->rollBack();
return false;
}
}
This method contains the logic to be executed when removing this migration. The default implementation throws an exception indicating the migration cannot be removed. Child classes may override this method if the corresponding migrations can be removed.
public void dropColumn(string $table, string $column)
| ||
$table | string | the table whose column is to be dropped. The name will be properly quoted by the method. |
$column | string | the name of the column to be dropped. The name will be properly quoted by the method. |
public function dropColumn($table, $column)
{
echo " > drop column $column from table $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->dropColumn($table, $column);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for dropping a DB column.
public void dropForeignKey(string $name, string $table)
| ||
$name | string | the name of the foreign key constraint to be dropped. The name will be properly quoted by the method. |
$table | string | the table whose foreign is to be dropped. The name will be properly quoted by the method. |
public function dropForeignKey($name, $table)
{
echo " > drop foreign key $name from table $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->dropForeignKey($name, $table);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds a SQL statement for dropping a foreign key constraint.
public void dropIndex(string $name, string $table)
| ||
$name | string | the name of the index to be dropped. The name will be properly quoted by the method. |
$table | string | the table whose index is to be dropped. The name will be properly quoted by the method. |
public function dropIndex($name, $table)
{
echo " > drop index $name ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->dropIndex($name, $table);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for dropping an index.
public void dropTable(string $table)
| ||
$table | string | the table to be dropped. The name will be properly quoted by the method. |
public function dropTable($table)
{
echo " > drop table $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->dropTable($table);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for dropping a DB table.
public void execute(string $sql, array $params=array (
))
| ||
$sql | string | the SQL statement to be executed |
$params | array | input parameters (name=>value) for the SQL execution. See CDbCommand::execute for more details. |
public function execute($sql, $params=array())
{
echo " > execute SQL: $sql ...";
$time=microtime(true);
$this->getDbConnection()->createCommand($sql)->execute($params);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Executes a SQL statement. This method executes the specified SQL statement using dbConnection.
public CDbConnection getDbConnection()
| ||
{return} | CDbConnection | the currently active database connection |
public function getDbConnection()
{
if($this->_db===null)
{
$this->_db=Yii::app()->getComponent('db');
if(!$this->_db instanceof CDbConnection)
throw new CException(Yii::t('yii', 'The "db" application component must be configured to be a CDbConnection object.'));
}
return $this->_db;
}
Returns the currently active database connection. By default, the 'db' application component will be returned and activated. You can call setDbConnection to switch to a different database connection. Methods such as insert, createTable will use this database connection to perform DB queries.
public void insert(string $table, array $columns)
| ||
$table | string | the table that new rows will be inserted into. |
$columns | array | the column data (name=>value) to be inserted into the table. |
public function insert($table, $columns)
{
echo " > insert into $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->insert($table, $columns);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Creates and executes an INSERT SQL statement. The method will properly escape the column names, and bind the values to be inserted.
public void refreshTableSchema(string $table)
| ||
$table | string | name of the table to refresh |
public function refreshTableSchema($table)
{
echo " > refresh table $table schema cache ...";
$time=microtime(true);
$this->getDbConnection()->getSchema()->getTable($table,true);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Refreshed schema cache for a table
public void renameColumn(string $table, string $name, string $newName)
| ||
$table | string | the table whose column is to be renamed. The name will be properly quoted by the method. |
$name | string | the old name of the column. The name will be properly quoted by the method. |
$newName | string | the new name of the column. The name will be properly quoted by the method. |
public function renameColumn($table, $name, $newName)
{
echo " > rename column $name in table $table to $newName ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->renameColumn($table, $name, $newName);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for renaming a column.
public void renameTable(string $table, string $newName)
| ||
$table | string | the table to be renamed. The name will be properly quoted by the method. |
$newName | string | the new table name. The name will be properly quoted by the method. |
public function renameTable($table, $newName)
{
echo " > rename table $table to $newName ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->renameTable($table, $newName);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for renaming a DB table.
public boolean safeDown()
| ||
{return} | boolean |
This method contains the logic to be executed when removing this migration. This method differs from down in that the DB logic implemented here will be enclosed within a DB transaction. Child classes may implement this method instead of up if the DB logic needs to be within a transaction.
public boolean safeUp()
| ||
{return} | boolean |
This method contains the logic to be executed when applying this migration. This method differs from up in that the DB logic implemented here will be enclosed within a DB transaction. Child classes may implement this method instead of up if the DB logic needs to be within a transaction.
public void setDbConnection(CDbConnection $db)
| ||
$db | CDbConnection | the database connection component |
public function setDbConnection($db)
{
$this->_db=$db;
}
Sets the currently active database connection. The database connection will be used by the methods such as insert, createTable.
public void truncateTable(string $table)
| ||
$table | string | the table to be truncated. The name will be properly quoted by the method. |
public function truncateTable($table)
{
echo " > truncate table $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->truncateTable($table);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Builds and executes a SQL statement for truncating a DB table.
public boolean up()
| ||
{return} | boolean |
public function up()
{
$transaction=$this->getDbConnection()->beginTransaction();
try
{
if($this->safeUp()===false)
{
$transaction->rollBack();
return false;
}
$transaction->commit();
}
catch(Exception $e)
{
echo "Exception: ".$e->getMessage().' ('.$e->getFile().':'.$e->getLine().")\n";
echo $e->getTraceAsString()."\n";
$transaction->rollBack();
return false;
}
}
This method contains the logic to be executed when applying this migration. Child classes may implement this method to provide actual migration logic.
public void update(string $table, array $columns, mixed $conditions='', array $params=array (
))
| ||
$table | string | the table to be updated. |
$columns | array | the column data (name=>value) to be updated. |
$conditions | mixed | the conditions that will be put in the WHERE part. Please refer to CDbCommand::where on how to specify conditions. |
$params | array | the parameters to be bound to the query. |
public function update($table, $columns, $conditions='', $params=array())
{
echo " > update $table ...";
$time=microtime(true);
$this->getDbConnection()->createCommand()->update($table, $columns, $conditions, $params);
echo " done (time: ".sprintf('%.3f', microtime(true)-$time)."s)\n";
}
Creates and executes an UPDATE SQL statement. The method will properly escape the column names and bind the values to be updated.