Merged in feature/PMCORE-1444 (pull request #7352)
PMCORE-1444 Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
19
workflow/engine/src/ProcessMaker/Model/TaskScheduler.php
Executable file
19
workflow/engine/src/ProcessMaker/Model/TaskScheduler.php
Executable file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace ProcessMaker\Model;
|
||||
|
||||
use \Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* Class TaskScheduler
|
||||
* @package ProcessMaker\Model
|
||||
*
|
||||
* Represents a dynaform object in the system.
|
||||
*/
|
||||
class TaskScheduler extends Model
|
||||
{
|
||||
protected $table = 'SCHEDULER';
|
||||
public $timestamps = true;
|
||||
const CREATED_AT = 'creation_date';
|
||||
const UPDATED_AT = 'last_update';
|
||||
}
|
||||
Reference in New Issue
Block a user