37 lines
535 B
PHP
37 lines
535 B
PHP
<?php
|
|
/**
|
|
* This class has been auto-generated by the Doctrine ORM Framework
|
|
*/
|
|
class AddCar extends Doctrine_Migration
|
|
{
|
|
public function up()
|
|
{
|
|
$this->createTable('car', array (
|
|
'id' =>
|
|
array (
|
|
'primary' => true,
|
|
'autoincrement' => true,
|
|
'type' => 'integer',
|
|
'length' => 11,
|
|
),
|
|
'name' =>
|
|
array (
|
|
'type' => 'string',
|
|
'length' => 255,
|
|
),
|
|
), array (
|
|
'indexes' =>
|
|
array (
|
|
),
|
|
'primary' =>
|
|
array (
|
|
0 => 'id',
|
|
),
|
|
));
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->dropTable('car');
|
|
}
|
|
} |