airport2023/plugins/vdomah/blogviews/models/BlogView.php

30 lines
519 B
PHP

<?php namespace Vdomah\BlogViews\Models;
use Model;
/**
* Model
*/
class BlogView 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 = 'vdomah_blogviews_views';
/**
* @var array Validation rules
*/
public $rules = [
];
}