PMCORE-545 Public files in a process cannot be deleted (in Windows Server) when the process is imported

This commit is contained in:
Roly Rudy Gutierrez Pinto
2020-02-05 09:11:54 -04:00
parent 822ce71005
commit 6a09fb6ddd
12 changed files with 386 additions and 36 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\DB;
class BpmnProcess extends Model
{
protected $table = 'BPMN_PROCESS';
public $timestamps = false;
}