20 lines
402 B
PHP
20 lines
402 B
PHP
<?php
|
|
|
|
namespace App\Models\ORM;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Track extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
const DELETED_AT = 'DeleteDate';
|
|
const UPDATED_AT = 'UpdatedDate';
|
|
const CREATED_AT = 'DateOfCreation';
|
|
|
|
protected $primaryKey = 'Id';
|
|
protected $table = 'Track';
|
|
protected $fillable = ['Name', 'Length'];
|
|
}
|