vmangos/sql/logs.sql

242 lines
9.5 KiB
MySQL
Raw Permalink Normal View History

2017-10-02 21:27:04 +03:00
-- --------------------------------------------------------
-- Host: 127.0.0.1
2017-10-02 21:27:04 +03:00
-- Server version: 5.5.53 - MySQL Community Server (GPL)
-- Server OS: Win32
-- HeidiSQL Version: 9.3.0.4998
2017-10-02 21:27:04 +03: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' */;
-- Dumping structure for table logs.instance_creature_kills
DROP TABLE IF EXISTS `instance_creature_kills`;
CREATE TABLE IF NOT EXISTS `instance_creature_kills` (
`mapId` int(10) unsigned NOT NULL COMMENT 'MapId to where creature exist',
`creatureEntry` int(10) unsigned NOT NULL COMMENT 'entry of the creature who performed the kill',
`spellEntry` int(10) NOT NULL COMMENT 'entry of spell which did the kill. 0 for melee or unknown',
`count` int(10) unsigned NOT NULL COMMENT 'number of kills',
PRIMARY KEY (`mapId`,`creatureEntry`,`spellEntry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='creatures killing players statistics';
-- Data exporting was unselected.
-- Dumping structure for table logs.instance_custom_counters
DROP TABLE IF EXISTS `instance_custom_counters`;
CREATE TABLE IF NOT EXISTS `instance_custom_counters` (
`index` int(10) unsigned NOT NULL COMMENT 'index as defined in InstanceStatistics.h',
`count` int(10) unsigned NOT NULL COMMENT 'counter',
PRIMARY KEY (`index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='custom counters for instance statistics';
-- Data exporting was unselected.
-- Dumping structure for table logs.instance_wipes
DROP TABLE IF EXISTS `instance_wipes`;
CREATE TABLE IF NOT EXISTS `instance_wipes` (
`mapId` int(10) unsigned NOT NULL COMMENT 'MapId to where creature exist',
`creatureEntry` int(10) unsigned NOT NULL COMMENT 'creature which the wipe occured against',
`count` int(10) unsigned NOT NULL COMMENT 'number of wipes',
PRIMARY KEY (`mapId`,`creatureEntry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='players wiping against creatures statistics';
-- Data exporting was unselected.
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.logs_battleground
2017-03-10 00:38:11 +03:00
DROP TABLE IF EXISTS `logs_battleground`;
2017-10-02 21:27:04 +03:00
CREATE TABLE IF NOT EXISTS `logs_battleground` (
2017-03-10 00:38:11 +03:00
`time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`bgid` int(11) DEFAULT NULL,
`bgtype` int(11) DEFAULT NULL,
`bgteamcount` int(11) DEFAULT NULL,
`bgduration` int(11) DEFAULT NULL,
`playerGuid` int(11) DEFAULT NULL,
`team` int(11) DEFAULT NULL,
`deaths` int(11) DEFAULT NULL,
`honorBonus` int(11) DEFAULT NULL,
`honorableKills` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
2017-03-10 00:38:11 +03:00
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.logs_behavior
DROP TABLE IF EXISTS `logs_behavior`;
CREATE TABLE IF NOT EXISTS `logs_behavior` (
2017-03-10 00:38:11 +03:00
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account` int(10) unsigned NOT NULL,
`detection` varchar(255) NOT NULL,
`data` varchar(255) NOT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
2017-03-10 00:38:11 +03:00
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.logs_characters
DROP TABLE IF EXISTS `logs_characters`;
CREATE TABLE IF NOT EXISTS `logs_characters` (
2017-03-10 00:38:11 +03:00
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`type` enum('LostSocket','Create','Delete','Login','Logout','') NOT NULL DEFAULT '',
`guid` int(11) NOT NULL DEFAULT '0',
`account` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`ip` varchar(255) NOT NULL DEFAULT '',
`clientHash` varchar(255) NOT NULL DEFAULT '',
KEY `guid` (`guid`),
KEY `ip` (`ip`),
KEY `clientHash` (`clientHash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
2017-03-10 00:38:11 +03:00
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.logs_chat
DROP TABLE IF EXISTS `logs_chat`;
CREATE TABLE IF NOT EXISTS `logs_chat` (
2017-03-10 00:38:11 +03:00
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`type` enum('Say','Whisp','Group','Guild','Officer','Raid','BG','Chan','') NOT NULL DEFAULT '',
`guid` int(11) NOT NULL DEFAULT '0',
`target` int(11) NOT NULL DEFAULT '0',
`channelId` int(11) NOT NULL DEFAULT '0',
`channelName` varchar(255) NOT NULL DEFAULT '',
`message` varchar(255) NOT NULL DEFAULT '',
KEY `guid` (`guid`),
KEY `target` (`target`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
2017-03-10 00:38:11 +03:00
-- Dumping structure for table logs.logs_movement
DROP TABLE IF EXISTS `logs_movement`;
CREATE TABLE IF NOT EXISTS `logs_movement` (
`account` int(10) unsigned NOT NULL,
`guid` int(10) unsigned NOT NULL,
`posx` float NOT NULL,
`posy` float NOT NULL,
`posz` float NOT NULL,
`map` int(10) unsigned NOT NULL,
`desyncMs` int(11) NOT NULL,
`desyncDist` float NOT NULL,
`cheats` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Data exporting was unselected.
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.logs_spamdetect
DROP TABLE IF EXISTS `logs_spamdetect`;
CREATE TABLE IF NOT EXISTS `logs_spamdetect` (
2017-03-10 00:38:11 +03:00
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`accountId` int(11) DEFAULT '0',
`guid` int(11) NOT NULL DEFAULT '0',
`message` varchar(255) NOT NULL DEFAULT '',
`reason` varchar(255) NOT NULL DEFAULT '',
KEY `guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
2017-03-10 00:38:11 +03:00
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.logs_trade
DROP TABLE IF EXISTS `logs_trade`;
CREATE TABLE IF NOT EXISTS `logs_trade` (
2017-03-10 00:38:11 +03:00
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`type` enum('AuctionBid','AuctionBuyout','SellItem','GM','Mail','QuestMaxLevel','Quest','Loot','Trade','') NOT NULL DEFAULT '',
`sender` int(11) unsigned NOT NULL DEFAULT '0',
`senderType` int(11) unsigned NOT NULL DEFAULT '0',
`senderEntry` int(11) unsigned NOT NULL DEFAULT '0',
`receiver` int(11) unsigned NOT NULL DEFAULT '0',
`amount` int(11) NOT NULL DEFAULT '0',
`data` int(11) NOT NULL DEFAULT '0',
KEY `sender` (`sender`),
KEY `receiver` (`receiver`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
2017-03-10 00:38:11 +03:00
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.logs_transactions
DROP TABLE IF EXISTS `logs_transactions`;
CREATE TABLE IF NOT EXISTS `logs_transactions` (
2017-03-10 00:38:11 +03:00
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
2017-10-02 21:27:04 +03:00
`type` enum('Bid','Buyout','PlaceAuction','Trade','Mail','MailCOD') DEFAULT NULL,
2017-03-10 00:38:11 +03:00
`guid1` int(11) unsigned NOT NULL DEFAULT '0',
`money1` int(11) unsigned NOT NULL DEFAULT '0',
`spell1` int(11) unsigned NOT NULL DEFAULT '0',
`items1` varchar(255) NOT NULL DEFAULT '',
`guid2` int(11) unsigned NOT NULL DEFAULT '0',
`money2` int(11) unsigned NOT NULL DEFAULT '0',
`spell2` int(11) unsigned NOT NULL DEFAULT '0',
`items2` varchar(255) NOT NULL DEFAULT '',
KEY `guid2` (`guid2`),
KEY `guid1` (`guid1`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
2017-03-10 00:38:11 +03:00
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.logs_trashcharacters
DROP TABLE IF EXISTS `logs_trashcharacters`;
CREATE TABLE IF NOT EXISTS `logs_trashcharacters` (
2017-03-10 00:38:11 +03:00
`guid` int(10) unsigned NOT NULL,
`data` varchar(255) NOT NULL,
`cluster` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
2017-03-10 00:38:11 +03:00
-- Dumping structure for table logs.logs_warden
DROP TABLE IF EXISTS `logs_warden`;
CREATE TABLE IF NOT EXISTS `logs_warden` (
`entry` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log entry ID',
`check` smallint(5) unsigned NOT NULL COMMENT 'Failed Warden check ID',
`action` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Action taken (enum WardenActions)',
`account` int(11) unsigned NOT NULL COMMENT 'Account ID',
`guid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Player GUID',
`map` int(11) unsigned DEFAULT NULL COMMENT 'Map ID',
`position_x` float DEFAULT NULL COMMENT 'Player position X',
`position_y` float DEFAULT NULL COMMENT 'Player position Y',
`position_z` float DEFAULT NULL COMMENT 'Player position Z',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date of the log entry',
PRIMARY KEY (`entry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Warden log of failed checks';
-- Data exporting was unselected.
2017-10-02 21:27:04 +03:00
-- Dumping structure for table logs.migrations
2017-03-10 00:38:11 +03:00
DROP TABLE IF EXISTS `migrations`;
2017-10-02 21:27:04 +03:00
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;
2017-10-02 21:27:04 +03:00
-- Data exporting was unselected.
-- Dumping structure for table logs.smartlog_creature
DROP TABLE IF EXISTS `smartlog_creature`;
CREATE TABLE IF NOT EXISTS `smartlog_creature` (
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`type` enum('Death','LongCombat','ScriptInfo','') NOT NULL DEFAULT '',
`entry` int(11) NOT NULL DEFAULT '0',
`guid` int(11) NOT NULL DEFAULT '0',
`specifier` varchar(255) NOT NULL DEFAULT '',
`combatTime` int(11) NOT NULL DEFAULT '0',
`content` varchar(255) NOT NULL DEFAULT '',
KEY `entry` (`entry`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- 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 */;