1
0
mirror of synced 2025-01-06 00:57:10 +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 <?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);
} }