TPS_web_october/plugins/akami/tps/models/Service.php

37 lines
654 B
PHP
Executable File

<?php namespace Akami\Tps\Models;
use Model;
/**
* Model
*/
class Service 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 = 'akami_tps_service';
public $implement = [
'@RainLab.Translate.Behaviors.TranslatableModel',
];
public $translatable = ['header', 'txt'];
/**
* @var array Validation rules
*/
public $rules = [
];
}