timestamps attribute visibility set to public

This commit is contained in:
dante
2019-04-25 17:46:02 -04:00
committed by Paula Quispe
parent 426c2f6f39
commit 2bf175ac85

View File

@@ -8,7 +8,7 @@ class Task extends Model
{ {
protected $table = 'TASK'; protected $table = 'TASK';
// We do not have create/update timestamps for this table // We do not have create/update timestamps for this table
protected $timestamps = false; public $timestamps = false;
public function process() public function process()
{ {