misc_pterodactyl-panel/app/Models/APIPermission.php

26 lines
367 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Models;
use Illuminate\Database\Eloquent\Model;
class APIPermission extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'api_permissions';
2016-01-16 06:20:27 +00:00
/**
* Fields that are not mass assignable.
*
* @var array
*/
protected $guarded = ['id'];
}