mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-19 00:01:00 +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'];
|
|
|
|
}
|