Fix errors with mounts; closes #2374

This commit is contained in:
Dane Everitt 2020-10-03 12:42:27 -07:00
parent b4a9a7205d
commit 99c9682f67
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
7 changed files with 63 additions and 186 deletions

21
app/Models/EggMount.php Normal file
View file

@ -0,0 +1,21 @@
<?php
namespace Pterodactyl\Models;
class EggMount extends Model
{
/**
* @var string
*/
protected $table = 'egg_mount';
/**
* @var null
*/
protected $primaryKey = null;
/**
* @var bool
*/
public $incrementing = false;
}