1
0
mirror of synced 2024-12-14 07:06:04 +03:00

fixed typo in model

This commit is contained in:
meus 2007-11-09 01:17:03 +00:00
parent f81e4fdcc7
commit c133403670

View File

@ -1,10 +1,12 @@
<?php
class Ticket589 extends Doctrine_Record {
public function prepareTables(){}
public function setTableDefinition() {
$this->hasColumn('id', 'integer', 4, array('notnull' => true,
'primary' => true,
'unsigned' > true,
'unsigned' => true,
'autoincrement' => true));
$this->hasColumn('name', 'string',50);
}