1489f7a694
PufferPanel v0.9 (Laravel) is now Pterodactyl 1.0
18 lines
250 B
PHP
18 lines
250 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
use Debugbar;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Download extends Model
|
|
{
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'downloads';
|
|
|
|
}
|