Transaction address table

This commit is contained in:
marcdeb1 2018-12-21 17:15:36 +01:00
parent b99285cfa5
commit 5064b86fc6
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace App\Model\Entity;
use Cake\ORM\Entity;
class TransactionAddress extends Entity {
}
?>

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');
}
}
?>