Name Transaction Address table file

This commit is contained in:
marcdeb1 2019-01-26 21:04:46 +01:00
parent f3564d7809
commit b96d40241d

View file

@ -0,0 +1,17 @@
<?php
namespace App\Model\Table;
use Cake\ORM\Table;
class TransactionAddressesTable extends Table {
public function initialize(array $config) {
parent::initialize($config);
$this->table('transaction_address');
$this->addBehavior('SimpleAudit');
}
}
?>