ORIENT/tests/fixtures/plugins/database/tester/models/EventLog.php

31 lines
522 B
PHP
Raw Normal View History

<?php namespace Database\Tester\Models;
use Model;
class EventLog extends Model
{
use \October\Rain\Database\Traits\SoftDelete;
/**
* @var string The database table used by the model.
*/
public $table = 'database_tester_event_log';
/**
* @var array Guarded fields
*/
protected $guarded = ['*'];
/**
* @var array Fillable fields
*/
protected $fillable = [];
/**
* @var array Relations
*/
public $morphTo = [
'related' => []
];
}