12 lines
318 B
PHP
12 lines
318 B
PHP
<?php
|
|
class Ticket589 extends Doctrine_Record {
|
|
|
|
public function setTableDefinition() {
|
|
$this->hasColumn('id', 'integer', 4, array('notnull' => true,
|
|
'primary' => true,
|
|
'unsigned' > true,
|
|
'autoincrement' => true));
|
|
$this->hasColumn('name', 'string',50);
|
|
}
|
|
}
|