Create AccountBan.php

This commit is contained in:
slawkens
2026-01-31 12:30:07 +01:00
parent c753feeeb0
commit 88ea9ceee1

View File

@@ -0,0 +1,18 @@
<?php
namespace MyAAC\Models;
use Illuminate\Database\Eloquent\Model;
class AccountBan extends Model {
protected $table = TABLE_PREFIX . 'account_bans';
public $timestamps = false;
protected $fillable = [
'account_id',
'reason', 'banned_at',
'expires_at', 'banned_by'
];
}