mirror of
https://github.com/pelican-dev/panel.git
synced 2026-03-01 11:21:31 +03:00
13 lines
185 B
PHP
13 lines
185 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||
|
|
|
||
|
|
class NodeRole extends Pivot
|
||
|
|
{
|
||
|
|
protected $table = 'node_role';
|
||
|
|
|
||
|
|
protected $primaryKey = null;
|
||
|
|
}
|