misc_pterodactyl-panel/app/Models/Session.php

26 lines
400 B
PHP
Raw Normal View History

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