<?php

namespace App\Indexer;

use Fobia\Database\SphinxConnection\Eloquent\Model;

class MediaIndex extends Model
{
    protected $table = 'medias_index';

    protected $casts = [
        'id'        => 'integer',
        'type'      => 'integer',
        'width'     => 'integer',
        'height'    => 'integer',
        'important' => 'integer',
        'parent_id' => 'integer',
    ];
}
