Chainquery integration #49

Merged
marcdeb1 merged 44 commits from chainquery into master 2019-02-13 19:01:13 +01:00
Showing only changes of commit b96d40241d - Show all commits

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