mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-20 12:14:01 +01:00
16 lines
241 B
PHP
Executable File
16 lines
241 B
PHP
Executable File
<?php
|
|
|
|
namespace Update\v2_4_10;
|
|
|
|
use Common\Model;
|
|
|
|
class TipoFattura extends Model
|
|
{
|
|
protected $table = 'co_tipidocumento';
|
|
|
|
public function fatture()
|
|
{
|
|
return $this->hasMany(Fattura::class, 'idtipodocumento');
|
|
}
|
|
}
|