24 lines
355 B
PHP
24 lines
355 B
PHP
<?php namespace Akami\Coffe30\Models;
|
|
|
|
use Model;
|
|
|
|
/**
|
|
* Model
|
|
*/
|
|
class Comment extends Model
|
|
{
|
|
use \October\Rain\Database\Traits\Validation;
|
|
|
|
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
public $table = 'akami_coffe30_comment';
|
|
|
|
/**
|
|
* @var array Validation rules
|
|
*/
|
|
public $rules = [
|
|
];
|
|
}
|