<?php namespace app\model; use support\Model; class Message extends Model { /** * The table associated with the model. * * @var string */ protected $table = 'message'; /** * The primary key associated with the table. * * @var string */ protected $primaryKey = 'id'; public $timestamps = false; }