mirror of
https://github.com/slawkens/myaac.git
synced 2026-02-03 03:46:22 +01:00
19 lines
289 B
PHP
19 lines
289 B
PHP
<?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'
|
|
];
|
|
|
|
}
|