mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 17:59:22 +02:00
15 lines
268 B
PHP
15 lines
268 B
PHP
<?php
|
|
|
|
namespace MyAAC\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AccountAction extends Model {
|
|
|
|
protected $table = TABLE_PREFIX . 'account_actions';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = ['account_id', 'ip', 'ipv6', 'date', 'action'];
|
|
|
|
}
|