2015-12-06 18:58:49 +00:00
|
|
|
<?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'];
|
|
|
|
|
2016-01-17 00:56:48 +00:00
|
|
|
/**
|
|
|
|
* Disable timestamps for this table.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
public $timestamps = false;
|
2016-01-16 06:20:27 +00:00
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|