From 8a513c3f2c5e79685fea8376c072ae03e64484fd Mon Sep 17 00:00:00 2001 From: Ro Date: Mon, 25 Sep 2023 13:07:19 -0700 Subject: [PATCH] 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 --- app/Models/Location.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Models/Location.php b/app/Models/Location.php index 5971544..7ae2c95 100644 --- a/app/Models/Location.php +++ b/app/Models/Location.php @@ -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" ];