Files
nexusphp/app/Models/ForumMod.php

11 lines
154 B
PHP
Raw Normal View History

2023-04-20 02:08:09 +08:00
<?php
namespace App\Models;
class ForumMod extends NexusModel
{
protected $table = 'forummods';
protected $fillable = ['forumid', 'userid'];
}