Berkarar/plugins/tps/shops/models/Slider.php

36 lines
639 B
PHP
Executable File

<?php namespace Tps\Shops\Models;
use Model;
/**
* Model
*/
class Slider 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 = 'tps_shops_sliders';
/**
* @var array Validation rules
*/
public $rules = [
];
public $attachOne = [
'image' => 'Tps\Shops\Classes\Attachment',
];
}