src/Model のフォルダに先ほどつくったテーブル名で生成します。
Channel01sTable.php
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?php namespace App\Model\Table; use Cake\ORM\Table; calss Channel01sTable extend Table { public function initialize( array config){ $this ->addBehavior( 'Timestamp' ); } } ?> |