gurl_o/plugins/tps/birzha/models/BirzhaDoc.php

31 lines
555 B
PHP
Raw Normal View History

2023-07-23 05:57:06 +00:00
<?php namespace TPS\Birzha\Models;
use Model;
/**
* Model
*/
class BirzhaDoc 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 = 'tps_birzha_docs_one';
protected $jsonable = ['section_docs'];
/**
* @var array Validation rules
*/
public $rules = [
];
}