Chainquery integration #49

Merged
marcdeb1 merged 44 commits from chainquery into master 2019-02-13 19:01:13 +01:00
2 changed files with 27 additions and 0 deletions
Showing only changes of commit 5064b86fc6 - Show all commits

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