25 lines
438 B
PHP
25 lines
438 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Metric extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $fillable=[
|
|
"name",
|
|
"namespace_index",
|
|
"identifier_type",
|
|
"numeric_id",
|
|
"string_id",
|
|
"guid_id",
|
|
"help"
|
|
];
|
|
|
|
const TYPE_NUMERIC = 1;
|
|
const TYPE_STRING = 2;
|
|
const TYPE_GUID = 3;
|
|
}
|