Files
sam-api/app/Models/Stats/Dimensions/DimDate.php

25 lines
437 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models\Stats\Dimensions;
use App\Models\Stats\BaseStatModel;
class DimDate extends BaseStatModel
{
protected $table = 'dim_date';
protected $primaryKey = 'date_key';
public $incrementing = false;
public $timestamps = false;
protected $keyType = 'string';
protected $casts = [
'date_key' => 'date',
'is_weekend' => 'boolean',
'is_holiday' => 'boolean',
];
}