22 lines
368 B
PHP
22 lines
368 B
PHP
<?php
|
|
|
|
namespace App\Models\User;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserSession extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The database connection that should be used by the migration.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $connection = 'mysql-membership';
|
|
|
|
protected $table = 'user_sessions';
|
|
|
|
}
|