2018-01-15 20:49:18 +02:00
|
|
|
-- --------------------------------------------------------
|
2021-06-14 18:54:25 +03:00
|
|
|
-- Host: 127.0.0.1
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Server version: 5.5.53 - MySQL Community Server (GPL)
|
|
|
|
|
-- Server OS: Win32
|
2021-06-14 18:54:25 +03:00
|
|
|
-- HeidiSQL Version: 9.3.0.4998
|
2018-01-15 20:49:18 +02:00
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
|
|
|
/*!40101 SET NAMES utf8mb4 */;
|
|
|
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
2017-03-10 00:38:11 +03:00
|
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.account
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `account` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
|
|
|
|
|
`username` varchar(32) NOT NULL,
|
|
|
|
|
`gmlevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`sessionkey` longtext,
|
|
|
|
|
`v` longtext,
|
|
|
|
|
`s` longtext,
|
|
|
|
|
`reg_mail` varchar(255) NOT NULL DEFAULT '',
|
|
|
|
|
`token_key` varchar(100) NOT NULL DEFAULT '',
|
|
|
|
|
`email` text,
|
|
|
|
|
`joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
`last_ip` varchar(30) NOT NULL DEFAULT '0.0.0.0',
|
|
|
|
|
`last_attempt_ip` varchar(15) NOT NULL DEFAULT '127.0.0.1',
|
|
|
|
|
`last_local_ip` varchar(30) NOT NULL DEFAULT '127.0.0.1',
|
|
|
|
|
`failed_logins` int(11) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`locked` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`lock_country` varchar(2) NOT NULL DEFAULT '00',
|
|
|
|
|
`last_login` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
|
|
|
`last_pwd_reset` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
|
|
|
`online` tinyint(4) NOT NULL DEFAULT '0',
|
|
|
|
|
`expansion` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`mutetime` bigint(40) NOT NULL DEFAULT '0',
|
|
|
|
|
`mutereason` varchar(255) NOT NULL DEFAULT '',
|
|
|
|
|
`muteby` varchar(50) NOT NULL DEFAULT '',
|
|
|
|
|
`locale` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`os` varchar(4) NOT NULL DEFAULT '',
|
|
|
|
|
`recruiter` int(11) NOT NULL DEFAULT '0',
|
|
|
|
|
`current_realm` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`banned` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`mail_verif` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`remember_token` varchar(100) NOT NULL DEFAULT '',
|
|
|
|
|
`flags` int(10) unsigned NOT NULL DEFAULT '0',
|
2018-01-15 20:49:18 +02:00
|
|
|
`security` varchar(255) DEFAULT NULL,
|
|
|
|
|
`pass_verif` varchar(255) DEFAULT NULL COMMENT 'Web recover password',
|
2017-03-10 00:38:11 +03:00
|
|
|
`email_verif` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Email verification',
|
2018-01-15 20:49:18 +02:00
|
|
|
`email_check` varchar(255) DEFAULT NULL,
|
|
|
|
|
`nostalrius_token` varchar(255) DEFAULT NULL,
|
2017-03-10 00:38:11 +03:00
|
|
|
`nostalrius_token_enabled` tinyint(1) NOT NULL DEFAULT '0',
|
2018-01-15 20:49:18 +02:00
|
|
|
`nostalrius_email` text,
|
|
|
|
|
`nostalrius_reason` text,
|
|
|
|
|
`geolock_pin` int(11) DEFAULT '0',
|
2017-03-10 00:38:11 +03:00
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
|
UNIQUE KEY `idx_username` (`username`),
|
|
|
|
|
KEY `idx_gmlevel` (`gmlevel`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Account System';
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.account_access
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `account_access` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`id` int(11) unsigned NOT NULL,
|
|
|
|
|
`gmlevel` tinyint(3) unsigned NOT NULL,
|
|
|
|
|
`RealmID` int(11) NOT NULL,
|
|
|
|
|
PRIMARY KEY (`id`,`RealmID`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.account_banned
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `account_banned` (
|
2018-08-26 08:51:57 +03:00
|
|
|
`banid` bigint(20) NOT NULL AUTO_INCREMENT,
|
2017-03-10 00:38:11 +03:00
|
|
|
`id` bigint(20) NOT NULL DEFAULT '0' COMMENT 'Account id',
|
|
|
|
|
`bandate` bigint(40) NOT NULL DEFAULT '0',
|
|
|
|
|
`unbandate` bigint(40) NOT NULL DEFAULT '0',
|
|
|
|
|
`bannedby` varchar(50) NOT NULL,
|
|
|
|
|
`banreason` varchar(255) NOT NULL,
|
|
|
|
|
`active` tinyint(4) NOT NULL DEFAULT '1',
|
|
|
|
|
`realm` tinyint(4) NOT NULL DEFAULT '1',
|
|
|
|
|
`gmlevel` tinyint(4) unsigned NOT NULL DEFAULT '0',
|
2018-08-26 08:51:57 +03:00
|
|
|
PRIMARY KEY (`id`,`bandate`),
|
|
|
|
|
UNIQUE KEY `banid` (`banid`)
|
2017-03-10 00:38:11 +03:00
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Ban List';
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.geoip
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `geoip` (
|
|
|
|
|
`network_start_integer` int(11) DEFAULT NULL,
|
|
|
|
|
`network_last_integer` int(11) DEFAULT NULL,
|
|
|
|
|
`geoname_id` text,
|
|
|
|
|
`registered_country_geoname_id` text,
|
|
|
|
|
`represented_country_geoname_id` text,
|
|
|
|
|
`is_anonymous_proxy` int(11) DEFAULT NULL,
|
|
|
|
|
`is_satellite_provider` int(11) DEFAULT NULL,
|
|
|
|
|
`postal_code` text,
|
|
|
|
|
`latitude` double DEFAULT NULL,
|
|
|
|
|
`longitude` double DEFAULT NULL,
|
|
|
|
|
`accuracy_radius` int(11) DEFAULT NULL,
|
|
|
|
|
KEY `ip_start` (`network_start_integer`),
|
|
|
|
|
KEY `ip_end` (`network_last_integer`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
|
|
|
|
|
-- Data exporting was unselected.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Dumping structure for table realmd.ip2nation
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ip2nation` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`ip` int(11) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`country` char(2) NOT NULL DEFAULT '',
|
|
|
|
|
KEY `ip` (`ip`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.ip2nationcountries
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ip2nationcountries` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`code` varchar(4) NOT NULL DEFAULT '',
|
|
|
|
|
`iso_code_2` varchar(2) NOT NULL DEFAULT '',
|
|
|
|
|
`iso_code_3` varchar(3) DEFAULT '',
|
|
|
|
|
`iso_country` varchar(255) NOT NULL DEFAULT '',
|
|
|
|
|
`country` varchar(255) NOT NULL DEFAULT '',
|
|
|
|
|
`lat` float NOT NULL DEFAULT '0',
|
|
|
|
|
`lon` float NOT NULL DEFAULT '0',
|
|
|
|
|
PRIMARY KEY (`code`),
|
|
|
|
|
KEY `code` (`code`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.ip_banned
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ip_banned` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`ip` varchar(32) NOT NULL DEFAULT '0.0.0.0',
|
|
|
|
|
`bandate` int(11) NOT NULL,
|
|
|
|
|
`unbandate` int(11) NOT NULL,
|
|
|
|
|
`bannedby` varchar(50) NOT NULL DEFAULT '[Console]',
|
|
|
|
|
`banreason` varchar(50) NOT NULL DEFAULT 'no reason',
|
|
|
|
|
PRIMARY KEY (`ip`)
|
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Banned IPs';
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.migrations
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `migrations` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`id` varchar(255) NOT NULL,
|
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.realmcharacters
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `realmcharacters` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`realmid` int(11) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`acctid` bigint(20) unsigned NOT NULL,
|
|
|
|
|
`numchars` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
PRIMARY KEY (`realmid`,`acctid`),
|
|
|
|
|
KEY `acctid` (`acctid`)
|
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Realm Character Tracker';
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.realmlist
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `realmlist` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`name` varchar(32) NOT NULL DEFAULT '',
|
|
|
|
|
`address` varchar(32) NOT NULL DEFAULT '127.0.0.1',
|
|
|
|
|
`localAddress` varchar(255) NOT NULL DEFAULT '127.0.0.1',
|
|
|
|
|
`localSubnetMask` varchar(255) NOT NULL DEFAULT '255.255.255.0',
|
|
|
|
|
`port` int(11) NOT NULL DEFAULT '8085',
|
|
|
|
|
`icon` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`realmflags` tinyint(3) unsigned NOT NULL DEFAULT '2',
|
|
|
|
|
`timezone` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`allowedSecurityLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`population` float unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`gamebuild_min` int(11) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`gamebuild_max` int(11) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`flag` tinyint(3) unsigned NOT NULL DEFAULT '2',
|
|
|
|
|
`realmbuilds` varchar(64) NOT NULL DEFAULT '',
|
|
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
|
UNIQUE KEY `idx_name` (`name`)
|
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Realm System';
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
2017-03-10 00:38:11 +03:00
|
|
|
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Dumping structure for table realmd.uptime
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `uptime` (
|
2017-03-10 00:38:11 +03:00
|
|
|
`realmid` int(11) unsigned NOT NULL,
|
|
|
|
|
`starttime` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`startstring` varchar(64) NOT NULL DEFAULT '',
|
|
|
|
|
`uptime` bigint(20) unsigned NOT NULL DEFAULT '0',
|
2018-01-15 20:49:18 +02:00
|
|
|
`onlineplayers` smallint(5) unsigned NOT NULL DEFAULT '0',
|
2017-03-10 00:38:11 +03:00
|
|
|
`maxplayers` smallint(5) unsigned NOT NULL DEFAULT '0',
|
2023-03-17 13:43:13 +01:00
|
|
|
`revision` varchar(255) NOT NULL DEFAULT 'VMangos',
|
2017-03-10 00:38:11 +03:00
|
|
|
PRIMARY KEY (`realmid`,`starttime`)
|
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Uptime system';
|
|
|
|
|
|
2018-01-15 20:49:18 +02:00
|
|
|
-- Data exporting was unselected.
|
|
|
|
|
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
|
|
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
|
|
|
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|