You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
375 B

7 years ago
<?php
/**
* Created by Error202
* Date: 26.01.2018
*/
namespace core\entities;
use yii\db\ActiveRecord;
/**
* Class Session
* @package entities
*
* @property string $id
* @property integer $expire
* @property string $data
* @property integer $user_id
*/
class Session extends ActiveRecord
{
public static function tableName()
{
return '{{%session}}';
}
}