Transaction address table
This commit is contained in:
parent
b99285cfa5
commit
5064b86fc6
2 changed files with 27 additions and 0 deletions
10
src/Model/Entity/TransactionAddress.php
Normal file
10
src/Model/Entity/TransactionAddress.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace App\Model\Entity;
|
||||
|
||||
use Cake\ORM\Entity;
|
||||
|
||||
class TransactionAddress extends Entity {
|
||||
}
|
||||
|
||||
?>
|
17
src/Model/Table/TransactionAddresses.php
Normal file
17
src/Model/Table/TransactionAddresses.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