1
0
mirror of https://github.com/v2board/v2board.git synced 2025-03-13 22:24:46 +08:00

13 lines
207 B
PHP
Raw Normal View History

2019-12-30 16:21:50 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class MailLog extends Model
{
protected $table = 'v2_mail_log';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}