Account actions rework on ip (Use single column for IP - VARCHAR(45)) (#289)

* Account actions rework on ip (Use single column for IP - VARCHAR(45))

* No foreach needed here
This commit is contained in:
Slawomir Boczek
2025-03-09 21:18:12 +01:00
committed by GitHub
parent 3c1210fefa
commit 7312383f73
7 changed files with 45 additions and 30 deletions

View File

@@ -9,6 +9,6 @@ class AccountAction extends Model {
public $timestamps = false;
protected $fillable = ['account_id', 'ip', 'ipv6', 'date', 'action'];
protected $fillable = ['account_id', 'ip', 'date', 'action'];
}