1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/models/ExpressionTest.php

10 lines
199 B
PHP
Raw Normal View History

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