38 lines
758 B
PHP
38 lines
758 B
PHP
<?php namespace Romanah\Gokbakja\Models;
|
|
|
|
use Model;
|
|
|
|
/**
|
|
* Model
|
|
*/
|
|
class PivotSewer extends Model
|
|
{
|
|
use \October\Rain\Database\Traits\Validation;
|
|
|
|
use \October\Rain\Database\Traits\SoftDelete;
|
|
|
|
protected $dates = ['deleted_at'];
|
|
|
|
public $belongsTo = [
|
|
'sewer_production' => [
|
|
'Romanah\Gokbakja\Models\SewerProduction',
|
|
'key' => 'sewer_production_id'
|
|
],
|
|
'rulon_action' => [
|
|
'Romanah\Gokbakja\Models\RulonAction',
|
|
'key' => 'rulon_action_id'
|
|
],
|
|
];
|
|
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
public $table = 'romanah_gokbakja_pivot_sewer';
|
|
|
|
/**
|
|
* @var array Validation rules
|
|
*/
|
|
public $rules = [
|
|
];
|
|
}
|