mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
12 lines
325 B
PHP
12 lines
325 B
PHP
<?php
|
|
namespace PonePaste\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AdminLog extends Model {
|
|
public const ACTION_LOGIN = 0;
|
|
public const ACTION_FAIL_LOGIN = 1;
|
|
public const ACTION_EDIT_CONFIG = 2;
|
|
protected $table = 'admin_logs';
|
|
protected $fillable = ['user_id', 'action', 'ip', 'time'];
|
|
}
|