Files
apimacro/app/Clientegm.php

19 lines
419 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Clientegm extends Model
{
2024-07-26 16:52:04 +02:00
protected $primaryKey = 'CodClienteInternet'; // Imposta la chiave primaria corretta
public $incrementing = true; // Indica che è auto-incrementante
2024-05-07 12:17:25 +02:00
//protected $connection = 'mysql_test';
protected $connection = 'sqlsrv_test';
protected $table = 'T_WOO_Clienti';
public $timestamps = false;
}