Merged in bugfix/PMC-370 (pull request #7068)

PMC-370

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Andrea Adamczyk
2019-09-12 18:48:58 +00:00
committed by Julio Cesar Laura Avendaño
4 changed files with 212 additions and 43 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class AppThread extends Model
{
protected $table = 'APP_THREAD';
// We do not have create/update timestamps for this table
public $timestamps = false;
}