Files
luos/workflow/engine/src/ProcessMaker/Model/Process.php

21 lines
421 B
PHP
Raw Normal View History

2017-12-04 13:25:35 +00:00
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
/**
* Class Process
* @package ProcessMaker\Model
*
* Represents a business process object in the system.
*/
class Process extends Model
{
// Set our table name
protected $table = 'PROCESS';
// We do have a created at, but we don't store an updated at
const CREATED_AT = 'PRO_CREATE_DATE';
const UPDATED_AT = null;
}