mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
17 lines
257 B
PHP
17 lines
257 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MountServer extends Model
|
|
{
|
|
protected $table = 'mount_server';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $primaryKey = null;
|
|
|
|
public $incrementing = false;
|
|
}
|