mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-05-06 14:41:02 -05:00
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
@ -4,10 +4,12 @@ namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
|
||||
class Location extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
use SoftDeletes;
|
||||
|
||||
/**
|
||||
* The table associated with the model.
|
||||
@ -29,6 +31,7 @@ class Location extends Model
|
||||
"added_by",
|
||||
"tags",
|
||||
"block_count",
|
||||
"silence_count",
|
||||
"created_at",
|
||||
"updated_at"
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user