19 lines
250 B
PHP
19 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';
|
||
|
|
||
|
}
|