mirror of
https://github.com/pyrohost/pyrodactyl.git
synced 2026-04-06 04:01:58 +02:00
17 lines
250 B
PHP
17 lines
250 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MountServer extends Model
|
|
{
|
|
protected $table = 'mount_server';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $primaryKey;
|
|
|
|
public $incrementing = false;
|
|
}
|