1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/en/migration.txt

178 lines
7.8 KiB
Plaintext
Raw Normal View History

2007-09-20 20:01:33 +04:00
The Doctrine Migration tools allow you to migrate databases and it issues alter table statements directly to your databases when you need to deploy database changes.
++ Writing Migration Classes
2007-09-21 00:24:38 +04:00
Migration classes consist of a simple class that extends from Doctrine_Migration. You can define a public up() and down() method that is meant for doing and undoing changes to a database for that migration step. The class name is completely arbitrary, but the name of the file which contains the class must have a prefix containing the number it represents in the migration process. Example: XXX_representative_name.class.php
2007-09-20 20:01:33 +04:00
<code type="php">
2007-09-21 00:24:38 +04:00
// 001_add_table.class.php
class AddTable extends Doctrine_Migration
2007-09-20 20:01:33 +04:00
{
public function up()
{
2007-09-20 20:11:59 +04:00
$this->createTable('migration_test', array('field1' => array('type' => 'string')));
2007-09-20 20:01:33 +04:00
}
public function down()
{
2007-09-20 20:11:59 +04:00
$this->dropTable('migration_test');
2007-09-20 20:01:33 +04:00
}
}
2007-09-21 00:24:38 +04:00
// 002_add_column.class.php
class AddColumn extends Doctrine_Migration
2007-09-20 20:01:33 +04:00
{
public function up()
{
2007-09-20 20:11:59 +04:00
$this->addColumn('migration_test', 'field1', 'string');
2007-09-20 20:01:33 +04:00
}
public function down()
{
2007-09-20 20:11:59 +04:00
$this->renameColumn('migration_test', 'field1', 'field2');
2007-09-20 20:01:33 +04:00
}
}
2007-09-21 00:24:38 +04:00
// 003_change_column.class.php
class ChangeColumn extends Doctrine_Migration
2007-09-20 20:01:33 +04:00
{
public function up()
{
2007-09-20 20:11:59 +04:00
$this->changeColumn('migration_test', 'field1', 'integer');
2007-09-20 20:01:33 +04:00
}
public function down()
{
2007-09-20 20:11:59 +04:00
$this->changeColumn('migration_test', 'field1', 'string');
2007-09-20 20:01:33 +04:00
}
}
</code>
+++ Methods
Here is a list of the available methods you can use to alter your database in your migration classes
<code type="php">
public function createTable($tableName, array $fields = array(), array $options = array())
public function dropTable($tableName)
public function renameTable($oldTableName, $newTableName)
public function addColumn($tableName, $columnName, $type, array $options = array())
public function renameColumn($tableName, $oldColumnName, $newColumnName)
public function changeColumn($tableName, $columnName, $type, array $options = array())
public function removeColumn($tableName, $columnName)
public function addIndex($tableName, $indexName, array $options = array())
public function removeIndex($tableName, $indexName)
public function createConstraint($tableName, $constraintName, array $definition)
public function dropConstraint($tableName, $constraintName, $primary = false)
public function createForeignKey($tableName, array $definition)
public function dropForeignKey($tableName, $fkName)
2007-09-20 20:01:33 +04:00
</code>
+++ Altering Data
You can alter table directly in your up() and down() methods like you normally would by creating new model instances and calling save() or creating queries and deleting data.
<code type="php">
2007-09-21 00:24:38 +04:00
// XXX_add_user.class.php
class AddUser extends Doctrine_Migration
2007-09-20 20:01:33 +04:00
{
public function up()
{
// Add new user
$user = new User();
$user->loginname = 'jwage';
$user->save();
}
public function down()
{
// Delete the user we added in the up
$query = new Doctrine_Query();
$query->delete('User')->from('User u')->where('u.loginname = ?', 'jwage')->execute();
}
}
</code>
Since the functions for creating tables and columns in reality just set up the migration (no sql is executed until after the up() or down() function returns), if you wish to insert data into tables created in that step you should use one of the following functions:
<code type="php">
public function preUp()
public function postUp()
public function preDown()
public function postDown()
</code>
In the case of an upward progression where version '5' of your schema you create a user table and would like to insert test data you would use the postUp() function as shown below, otherwise the insertion of the user record would happen before the creation of the table.
<code type="php">
// 005_add_user.class.php
class AddUser extends Doctrine_Migration
{
public function up()
{
$this->createTable('users',array(
'id'=>array('type'=>'integer','primary'=>true,'autoincrement'=>true),
'name'=>array('type'=>'string','length'=>32)
),
array('indexes'=>array(),'primary'=>array(0=>'id'));
}
public function postUp()
{
// Add new user
$user = new User();
$user->name = 'jwage';
$user->save();
}
public function down()
{
// Effectively deletes the user we added in the up
$this->dropTable('users');
}
}
</code>
2007-09-20 20:01:33 +04:00
++ Performing Migrations
<code type="php">
$migration = new Doctrine_Migration('/path/to/migration_classes');
2007-09-20 20:01:33 +04:00
// Assume current version is 0
$migration->migrate(3); // takes you from 0 to 3
$migration->migrate(0); // takes you from 3 to 0
2007-09-20 20:01:33 +04:00
echo $migration->getCurrentVersion(); // 0
</code>
++ Migration Notes
Migrations aren't feature complete and still have many bugs, so the documentation below is from experience and will likely need to go away when everything is solidified. Migrations as of yet do not auto-create themselves based on changes to models or schema. Moving from one level to another will not modify or update your models. At this time It strictly allows you to move a project's DB or any copy of a project's DB between versions of a schema. If you move between one version and another, you'll have to modify either your schema or the models directly to match the current DB. This is obviously an incomplete feature as we hope to be able to use migrations to keep your schema and / or models in sync with the changes made in a migration step.
When using migrations on an pre-existing project (particularly with symfony), there are tasks to create the initial migration classes. Last I checked it had a bug where the migration class files were not numbered correctly. The task should create one migration class for each table in your schema, and a single migration class for all the foreign keys. Since I prefer to have each migration perform one logical step, I move them all into one class. Thus my 001_create_tables.class, is very large and essentially does the same thing as the insert-sql task. In the case where you have already created the database, and it is populated with data, you will have to manually create the migration table within your database. Its a very simple table. Since your project already contains a database, you will also have to insert the starting version. In my case with all tables created in 001_create_tables.class.php I would do the following.
<code type="sql">
CREATE TABLE migration_version ( version INT );
INSERT INTO migration_versiont (version) VALUES (1);
</code>
If you prefer the one operation per migration, you may be starting at step 9 or 30 or who knows. If you have no existing tables or data that you care to keep, you can drop all your existing tables and call the migration function to create all your initial tables.
If you had to migrate a few steps down, you might get stuck between two migration steps if your model is out of sync with your table.
Assume that migration step 3 adds a new attribute to your model - and step 2 tries to access that model, you cannot migrate to step 3, because the table doesn't know about the new attribute:
<code type="php">
$migration = new Doctrine_Migration('/path/to/migration_classes');
// Current version is 3
echo $migration->getCurrentVersion(); // 3
$migration->migrate(0); // takes you from 3 to 0
$migration->migrate(3); // should take you from 0 to 3 but might throw an error if your model is out of sync
echo $migration->getCurrentVersion(); // 1
</code>
A simple workaround is to comment out the new attribute in your model file, migrate up stepwise and uncomment the attribute, when you're done.