/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `accounts_sessions` -- DROP TABLE IF EXISTS `accounts_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `accounts_sessions` ( `accid` int(10) unsigned NOT NULL DEFAULT '0', `charid` int(10) unsigned NOT NULL DEFAULT '0', `targid` smallint(5) unsigned NOT NULL DEFAULT '0', `unitychat` int(10) unsigned NOT NULL DEFAULT '0', `linkshellid1` int(10) unsigned NOT NULL DEFAULT '0', `linkshellrank1` smallint(5) unsigned NOT NULL DEFAULT '0', `linkshellid2` int(10) unsigned NOT NULL DEFAULT '0', `linkshellrank2` smallint(5) unsigned NOT NULL DEFAULT '0', `session_key` binary(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `server_addr` int(10) unsigned NOT NULL DEFAULT '0', `server_port` smallint(5) unsigned NOT NULL DEFAULT '0', `client_addr` int(10) unsigned NOT NULL DEFAULT '0', `client_port` smallint(5) unsigned NOT NULL DEFAULT '0', `version_mismatch` tinyint(1) unsigned NOT NULL DEFAULT '0', `seacom_type` TINYINT(1) unsigned NOT NULL DEFAULT '0', `seacom_message` TINYBLOB NULL DEFAULT NULL, `last_zoneout_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`charid`), UNIQUE KEY `accid` (`accid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;