mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
13 lines
177 B
PHP
13 lines
177 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
class EggMount extends Model
|
|
{
|
|
protected $table = 'egg_mount';
|
|
|
|
protected $primaryKey = null;
|
|
|
|
public $incrementing = false;
|
|
}
|