v2board/app/Models/MailLog.php

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'];
}