Files
website/app/model/MediaModel.php
Riyyi a8056b66cc Initial commit
Couldnt keep the history unfortunately.
2021-03-03 17:55:48 +01:00

15 lines
158 B
PHP

<?php
namespace App\Model;
use App\Traits\Log;
class MediaModel extends Model {
use Log;
protected $table = 'media';
protected $sort = 'filename';
}