Separated silence and suspend counts
The count data is now separated by specific action rather than grouping everything together. This gives a clearer picture of the severity of a response by current sources
This commit is contained in:
parent
1c904e5e51
commit
8a513c3f2c
1 changed files with 3 additions and 0 deletions
|
@ -4,10 +4,12 @@ namespace App\Models;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||||
|
|
||||||
class Location extends Model
|
class Location extends Model
|
||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
use SoftDeletes;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The table associated with the model.
|
* The table associated with the model.
|
||||||
|
@ -29,6 +31,7 @@ class Location extends Model
|
||||||
"added_by",
|
"added_by",
|
||||||
"tags",
|
"tags",
|
||||||
"block_count",
|
"block_count",
|
||||||
|
"silence_count",
|
||||||
"created_at",
|
"created_at",
|
||||||
"updated_at"
|
"updated_at"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue