13 lines
268 B
PHP
13 lines
268 B
PHP
|
<?php
|
||
|
class AddTable extends Doctrine_Migration
|
||
|
{
|
||
|
public function up()
|
||
|
{
|
||
|
$this->createTable('migration_test', array('field1' => array('type' => 'string')));
|
||
|
}
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
$this->dropTable('migration_test');
|
||
|
}
|
||
|
}
|