cakeで遊んでみよう modelの設定

src/Model のフォルダに先ほどつくったテーブル名で生成します。
Channel01sTable.php

<?php

namespace App\Model\Table;

use Cake\ORM\Table;

calss Channel01sTable extend Table
{
	public function initialize(array config){
		$this->addBehavior('Timestamp');
	}
}
?>