1
0
mirror of https://github.com/v2board/v2board.git synced 2025-02-24 14:20:29 +08:00
v2board/app/Models/InviteCode.php
2019-10-22 23:39:48 +08:00

12 lines
180 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class InviteCode extends Model
{
protected $table = 'v2_invite_code';
protected $dateFormat = 'U';
}