misc_pterodactyl-panel/app/Models/APIKey.php

18 lines
233 B
PHP
Raw Normal View History

2016-01-16 00:26:50 +00:00
<?php
namespace Pterodactyl\Models;
use Illuminate\Database\Eloquent\Model;
class APIKey extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'api_keys';
}