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:
Paula Quispe
2020-06-19 17:10:48 +00:00
committed by Julio Cesar Laura Avendaño
24 changed files with 3322 additions and 5 deletions

View 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';
}