This commit is contained in:
Julio Cesar Laura Avendaño
2019-09-03 13:35:27 -04:00
parent c95280fe2a
commit 81c255e01b
3 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class WebEntry extends Model
{
// Set our table name
protected $table = 'WEB_ENTRY';
protected $primaryKey = 'WE_UID';
// We do not have create/update timestamps for this table
public $timestamps = false;
}