1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/tests/migration_classes/002_change_column.php
2007-09-20 20:24:38 +00:00

13 lines
273 B
PHP

<?php
class ChangeColumn extends Doctrine_Migration
{
public function up()
{
$this->changeColumn('migration_test', 'field1', 'integer');
}
public function down()
{
$this->changeColumn('migration_test', 'field1', 'string');
}
}