etalon_backend/plugins/atash/slider/models/Slider.php

34 lines
584 B
PHP
Raw Normal View History

2021-12-22 08:07:43 +00:00
<?php namespace Atash\Slider\Models;
use Model;
/**
* Model
*/
class Slider extends Model
{
use \October\Rain\Database\Traits\Validation;
/*
* 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 = 'atash_slider_slider';
/**
* @var array Validation rules
*/
public $rules = [
];
public $attachOne = [
'image' => 'System\Models\File'
];
}