1
0
mirror of synced 2025-02-17 20:53:18 +03:00

11 lines
201 B
PHP

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