<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class VersionGantt extends Model
{
    protected $table = 'm_version_gantt';

    const CREATED_AT = 'created_at';
    const UPDATED_AT = 'updated_at';

    protected $fillable = [
        'name_version',  
        'description',
        'date_base_line',
        'proyek_id',
        'config_dayoff',
        'created_at', 
        'created_by', 
        'updated_at', 
        'updated_by'
    ];
}