mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-06-13 23:07:33 +08:00
12 lines
159 B
PHP
12 lines
159 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
class UserPermission extends NexusModel
|
||
|
|
{
|
||
|
|
public $timestamps = true;
|
||
|
|
|
||
|
|
protected $fillable = ['uid', 'permission_id'];
|
||
|
|
|
||
|
|
}
|