Fix errors with mounts; closes #2374
This commit is contained in:
parent
b4a9a7205d
commit
99c9682f67
7 changed files with 63 additions and 186 deletions
21
app/Models/EggMount.php
Normal file
21
app/Models/EggMount.php
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue