1
0
mirror of synced 2025-02-21 22:53:15 +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');
}
}