From adbac82c303c420311e9e0f52efdd0eab6f11894 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 17 May 2022 06:56:55 -0700 Subject: [PATCH] Removed stored_eula_file from actionlog Signed-off-by: snipe --- app/Models/Actionlog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Actionlog.php b/app/Models/Actionlog.php index 8d430c79d9..2d406b3aa8 100755 --- a/app/Models/Actionlog.php +++ b/app/Models/Actionlog.php @@ -25,7 +25,7 @@ class Actionlog extends SnipeModel protected $table = 'action_logs'; public $timestamps = true; - protected $fillable = ['created_at', 'item_type', 'user_id', 'item_id', 'action_type', 'note', 'target_id', 'target_type', 'stored_eula', 'stored_eula_file']; + protected $fillable = ['created_at', 'item_type', 'user_id', 'item_id', 'action_type', 'note', 'target_id', 'target_type', 'stored_eula']; use Searchable;