1
0
mirror of synced 2025-01-08 10:07:10 +03:00
doctrine2/sandbox/migrations/002_add_car.class.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');
}
}