ponepaste/includes/Models/AdminLog.php

13 lines
325 B
PHP
Raw Normal View History

2021-11-02 08:46:40 -04:00
<?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'];
}