1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-26 02:52:30 +01:00
Pterodactyl-Panel/app/Models/Session.php

22 lines
349 B
PHP
Raw Normal View History

2016-02-26 06:35:23 +01:00
<?php
2016-12-07 23:46:38 +01:00
2016-02-26 06:35:23 +01:00
namespace Pterodactyl\Models;
use Illuminate\Database\Eloquent\Model;
class Session extends Model
{
/**
* The table associated with the model.
*/
protected $table = 'sessions';
2017-03-20 00:36:50 +01:00
/**
* Cast values to correct type.
*/
protected $casts = [
'id' => 'string',
'user_id' => 'integer',
];
2016-02-26 06:35:23 +01:00
}