turtle-wow-source-kinda/Dumps/Source Code/8 - Development_website/develop/app/Models/auth/StatisticsOnline.php
Brian Oost a1d5bb70b2 Init
2024-08-06 18:06:40 +02:00

47 lines
1.1 KiB
PHP

<?php
namespace App\Models\auth;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
/**
* @OA\Tag(
* name="Auth",
* description="Operations related to Auth database"
* )
*/
/**
* @OA\Schema(
* schema="StatisticsOnline",
* title="StatisticsOnline",
* description="StatisticsOnline model",
* @OA\Property(property="guid", type="integer"),
* @OA\Property(property="online", type="integer"),
* @OA\Property(property="online_alli", type="integer"),
* @OA\Property(property="online_horde", type="integer"),
* @OA\Property(property="connections", type="integer"),
* @OA\Property(property="realm", type="integer"),
* @OA\Property(property="date", type="integer")
* )
*/
class StatisticsOnline extends Model
{
use HasFactory;
protected $connection = 'mysql2';
protected $table = 'statistics_online';
protected $primaryKey = 'guid';
public $timestamps = false;
protected $fillable = [
'online',
'online_alli',
'online_horde',
'connections',
'queue',
'realm',
'date',
];
}