15 lines
258 B
PHP
15 lines
258 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Stats;
|
||
|
|
|
||
|
|
class StatDefinition extends BaseStatModel
|
||
|
|
{
|
||
|
|
protected $table = 'stat_definitions';
|
||
|
|
|
||
|
|
protected $casts = [
|
||
|
|
'source_tables' => 'array',
|
||
|
|
'config' => 'array',
|
||
|
|
'is_active' => 'boolean',
|
||
|
|
];
|
||
|
|
}
|