Update MovieInfo model and related migration

This commit is contained in:
DariusIII
2017-09-28 14:42:00 +02:00
parent 879f28664d
commit bdab2cbd89
4 changed files with 324 additions and 265 deletions
+17 -1
View File
@@ -6,5 +6,21 @@ use Illuminate\Database\Eloquent\Model;
class MovieInfo extends Model
{
//
const CREATED_AT = 'createddate';
const UPDATED_AT = 'updateddate';
/**
* @var string
*/
protected $table = 'movieinfo';
/**
* @var bool
*/
protected $dateFormat = false;
/**
* @var array
*/
protected $guarded = ['id'];
}