Name Transaction Address table file
This commit is contained in:
parent
f3564d7809
commit
b96d40241d
1 changed files with 17 additions and 0 deletions
17
src/Model/Table/TransactionAddressesTable.php
Normal file
17
src/Model/Table/TransactionAddressesTable.php
Normal 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');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in a new issue