log count of logged in users in Database (#13137)

* log count of logged in users in Database

* .

* rewrite Code

* create hrSystem Table

* .

* .

* db adjustments

* adjust db Table

* .

* adjust db Table

* table redesign

* .

* .
This commit is contained in:
SourceDoctor
2021-10-02 01:58:26 +02:00
committed by GitHub
parent a828bb00c3
commit f47410e426
5 changed files with 69 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Models;
class HrSystem extends DeviceRelatedModel
{
public $timestamps = false;
protected $table = 'hrSystem';
protected $fillable = ['hrSystemNumUsers', 'hrSystemProcesses', 'hrSystemMaxProcesses'];
protected $primaryKey = 'hrSystem_id';
}