From 83fe345c6e7e9d1169ed416604d194913193278e Mon Sep 17 00:00:00 2001 From: Yehonal Date: Sun, 10 Jul 2016 17:03:33 +0200 Subject: [PATCH] removed useless files from various data --- .../logon fixes/logon.autobroadcast.sql | 14 ---------- .../various/pvpstats patch/pvpstats_char.sql | 26 ------------------- 2 files changed, 40 deletions(-) delete mode 100644 data/sql/various/logon fixes/logon.autobroadcast.sql delete mode 100644 data/sql/various/pvpstats patch/pvpstats_char.sql diff --git a/data/sql/various/logon fixes/logon.autobroadcast.sql b/data/sql/various/logon fixes/logon.autobroadcast.sql deleted file mode 100644 index 7fcd150b0..000000000 --- a/data/sql/various/logon fixes/logon.autobroadcast.sql +++ /dev/null @@ -1,14 +0,0 @@ -DROP TABLE IF EXISTS `autobroadcast`; -CREATE TABLE `autobroadcast` ( - `realmid` int(10) NOT NULL, - `id` int(11) NOT NULL AUTO_INCREMENT, - `weight` tinyint(3) DEFAULT 1, - `text` longtext NOT NULL, - PRIMARY KEY (`id`, `realmid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - -ALTER TABLE `autobroadcast` - CHANGE `realmid` `realmid` INT(11) NOT NULL DEFAULT '-1', - CHANGE `id` `id` TINYINT(3) UNSIGNED NOT NULL AUTO_INCREMENT, - CHANGE `weight` `weight` TINYINT(3) UNSIGNED DEFAULT '1', -ENGINE=INNODB; \ No newline at end of file diff --git a/data/sql/various/pvpstats patch/pvpstats_char.sql b/data/sql/various/pvpstats patch/pvpstats_char.sql deleted file mode 100644 index dcb7585db..000000000 --- a/data/sql/various/pvpstats patch/pvpstats_char.sql +++ /dev/null @@ -1,26 +0,0 @@ -CREATE TABLE IF NOT EXISTS `pvpstats_battlegrounds` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `winner_faction` tinyint(4) NOT NULL, - `bracket_id` tinyint(3) unsigned NOT NULL, - `type` tinyint(3) unsigned NOT NULL, - `date` datetime NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - -CREATE TABLE IF NOT EXISTS `pvpstats_players` ( - `battleground_id` bigint(20) unsigned NOT NULL, - `character_guid` int(10) unsigned NOT NULL, - `winner` bit(1) NOT NULL, - `score_killing_blows` mediumint(8) unsigned NOT NULL, - `score_deaths` mediumint(8) unsigned NOT NULL, - `score_honorable_kills` mediumint(8) unsigned NOT NULL, - `score_bonus_honor` mediumint(8) unsigned NOT NULL, - `score_damage_done` mediumint(8) unsigned NOT NULL, - `score_healing_done` mediumint(8) unsigned NOT NULL, - `attr_1` mediumint(8) unsigned NOT NULL DEFAULT '0', - `attr_2` mediumint(8) unsigned NOT NULL DEFAULT '0', - `attr_3` mediumint(8) unsigned NOT NULL DEFAULT '0', - `attr_4` mediumint(8) unsigned NOT NULL DEFAULT '0', - `attr_5` mediumint(8) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`battleground_id`,`character_guid`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1;