10 lines
199 B
PHP
10 lines
199 B
PHP
|
<?php
|
||
|
class ExpressionTest extends Doctrine_Record
|
||
|
{
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->hasColumn('name', 'string');
|
||
|
$this->hasColumn('amount', 'integer');
|
||
|
}
|
||
|
}
|