mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-11 10:50:51 +08:00
11 lines
154 B
PHP
11 lines
154 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
class ForumMod extends NexusModel
|
||
|
|
{
|
||
|
|
protected $table = 'forummods';
|
||
|
|
|
||
|
|
protected $fillable = ['forumid', 'userid'];
|
||
|
|
|
||
|
|
}
|