Merged in bugfix/PMCORE-532 (pull request #7266)

PMCORE-532

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Andrea Adamczyk
2020-02-20 14:03:05 +00:00
committed by Julio Cesar Laura Avendaño
4 changed files with 474 additions and 70 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class Step extends Model
{
protected $table = "STEP";
public $timestamps = false;
}