<?php namespace Studiovx\Marcleopold\Models;

use Model;

/**
 * Model
 */
class IndexImage extends Model
{
    use \October\Rain\Database\Traits\Validation;
    use \October\Rain\Database\Traits\Sortable;

    /*
     * Disable timestamps by default.
     * Remove this line if timestamps are defined in the database table.
     */
    public $timestamps = false;


    /**
     * @var string The database table used by the model.
     */
    public $table = 'studiovx_marcleopold_index_images';

    /**
     * @var array Validation rules
     */
    public $rules = [
    ];
}