GameConfig.php 265 Bytes
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class GameConfig extends Model
{
    protected $table = 'app_game_config';

    //关闭created_at和updated_at的自动更新。
    public $timestamps = false;

    protected $guarded = [];
}