Removed stored_eula_file from actionlog

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-05-17 06:56:55 -07:00
parent e467ce912b
commit adbac82c30

View file

@ -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;