<?php

namespace App\Indexer;

use Fobia\Database\SphinxConnection\Eloquent\Model;

class LinkIndex extends Model
{
    protected $table = 'links_index';

    protected $fillable = ['id', 'job_id', 'site', 'url', 'status', 'is_activated', 'created_at'];
}