18 lines
No EOL
308 B
PHP
18 lines
No EOL
308 B
PHP
<?php
|
|
|
|
namespace App\Model\Table;
|
|
|
|
use Cake\ORM\Table;
|
|
|
|
class TransactionsTable extends Table {
|
|
public function initialize(array $config) {
|
|
parent::initialize($config);
|
|
|
|
$this->primaryKey('Id');
|
|
$this->table('Transactions');
|
|
|
|
$this->addBehavior('SimpleAudit');
|
|
}
|
|
}
|
|
|
|
?>
|