1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/Account.php

11 lines
201 B
PHP

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