You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
411 B
20 lines
411 B
2 years ago
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class ActivityProgressLog extends Model
|
||
|
{
|
||
|
protected $table = 'm_activity_progress_log';
|
||
|
|
||
|
const CREATED_AT = 'created_at';
|
||
|
const UPDATED_AT = null;
|
||
|
|
||
|
protected $fillable = [
|
||
|
'version_gantt_id', 'activity_id', 'old_percentage', 'new_percentage', 'variance',
|
||
|
'created_at', 'created_by'
|
||
|
];
|
||
|
|
||
|
}
|