18 lines
332 B
PHP
18 lines
332 B
PHP
<?php
|
|
|
|
namespace Modules\Interventi;
|
|
|
|
use Common\Model;
|
|
|
|
class Stato extends Model
|
|
{
|
|
public $incrementing = false;
|
|
protected $primaryKey = 'idstatointervento';
|
|
protected $table = 'in_statiintervento';
|
|
|
|
public function interventi()
|
|
{
|
|
return $this->hasMany(Intervento::class, 'idstatointervento');
|
|
}
|
|
}
|