1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/models/Ticket589.php

12 lines
318 B
PHP
Raw Normal View History

2007-11-09 03:19:14 +03:00
<?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);
}
}