mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-06-14 15:27:34 +08:00
12 lines
147 B
PHP
12 lines
147 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
class UserRole extends NexusModel
|
||
|
|
{
|
||
|
|
public $timestamps = true;
|
||
|
|
|
||
|
|
protected $fillable = ['uid', 'role_id'];
|
||
|
|
|
||
|
|
}
|