fixed typo in model
This commit is contained in:
parent
f81e4fdcc7
commit
c133403670
@ -1,10 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
class Ticket589 extends Doctrine_Record {
|
class Ticket589 extends Doctrine_Record {
|
||||||
|
|
||||||
|
public function prepareTables(){}
|
||||||
|
|
||||||
public function setTableDefinition() {
|
public function setTableDefinition() {
|
||||||
$this->hasColumn('id', 'integer', 4, array('notnull' => true,
|
$this->hasColumn('id', 'integer', 4, array('notnull' => true,
|
||||||
'primary' => true,
|
'primary' => true,
|
||||||
'unsigned' > true,
|
'unsigned' => true,
|
||||||
'autoincrement' => true));
|
'autoincrement' => true));
|
||||||
$this->hasColumn('name', 'string',50);
|
$this->hasColumn('name', 'string',50);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user