Add tables for almost every admin change, update composer dependencies

This commit is contained in:
Matthew Penner 2021-01-05 14:52:49 -07:00
parent 8f1a5bf0ab
commit 59de9576c9
42 changed files with 3327 additions and 1241 deletions

View file

@ -2,6 +2,19 @@
namespace Pterodactyl\Models;
/**
* @property int $id
* @property string $name
* @property string $host
* @property int $port
* @property string $username
* @property int $node_id
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
*
* @property \Pterodactyl\Models\Node|null $node
* @property \Pterodactyl\Models\Database[]|\Illuminate\Database\Eloquent\Collection $databases
*/
class DatabaseHost extends Model
{
/**