g_sto/plugins/romanah/gokbakja/models/SewerProduction.php

46 lines
959 B
PHP

<?php namespace Romanah\Gokbakja\Models;
use Model;
/**
* Model
*/
class SewerProduction extends Model
{
use \October\Rain\Database\Traits\Validation;
use \October\Rain\Database\Traits\SoftDelete;
protected $dates = ['deleted_at'];
public $hasMany = [
'pivot_sewer' => [
'Romanah\Gokbakja\Models\PivotSewer',
'key' => 'sewer_production_id',
'softDelete' => true
],
];
public $belongsTo = [
'employee' => [
'Romanah\Gokbakja\Models\Employee',
'key' => 'employee_id'
],
'machin_production' => [
'Romanah\Gokbakja\Models\ProductionMachine',
'key' => 'machine_production_id'
],
];
/**
* @var string The database table used by the model.
*/
public $table = 'romanah_gokbakja_sewer_production';
/**
* @var array Validation rules
*/
public $rules = [
];
}