12 lines
276 B
PHP
12 lines
276 B
PHP
<?php
|
|
class MysqlTestRecord extends Doctrine_Record
|
|
{
|
|
public function setTableDefinition()
|
|
{
|
|
$this->hasColumn('name', 'string', null, 'primary');
|
|
$this->hasColumn('code', 'integer', null, 'primary');
|
|
|
|
$this->option('type', 'INNODB');
|
|
}
|
|
}
|