misc_pterodactyl-panel/app/Models/APIKey.php
2016-01-15 19:26:50 -05:00

17 lines
233 B
PHP

<?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';
}