@@ -5,7 +5,7 @@ The Doctrine Migration tools allow you to migrate databases and it issues alter
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.
<code type="php">
class MigrationTestTable extends Doctrine_Record
class MigrationTest extends Doctrine_Record
{
public function setTableDefinition()
{
...
...
@@ -17,12 +17,12 @@ class Migration2 extends Doctrine_Migration