Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
237 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class LoadbalancerRserver extends Model
{
protected $table = 'loadbalancer_rservers';
protected $primaryKey = 'rserver_id';
public $timestamps = false;
}