- removed now obsolete sql-updates

- set revision to 1
This commit is contained in:
Sarjuuk
2015-05-13 17:18:25 +02:00
parent 51f2828f6f
commit 929cb95bcd
8 changed files with 1 additions and 3820 deletions

View File

@@ -1,6 +1,6 @@
<?php
define('AOWOW_REVISION', 12);
define('AOWOW_REVISION', 1);
define('CLI', PHP_SAPI === 'cli');

View File

@@ -1,73 +0,0 @@
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server Version: 5.6.16 - MySQL Community Server (GPL)
-- Server Betriebssystem: Win32
-- HeidiSQL Version: 8.3.0.4834
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!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' */;
-- Exportiere Struktur von Tabelle world.aowow_config
DROP TABLE IF EXISTS `aowow_config`;
CREATE TABLE IF NOT EXISTS `aowow_config` (
`key` varchar(25) NOT NULL,
`value` varchar(255) NOT NULL,
`flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
`comment` varchar(255) NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- Exportiere Daten aus Tabelle world.aowow_config: 44 rows
/*!40000 ALTER TABLE `aowow_config` DISABLE KEYS */;
INSERT INTO `aowow_config` (`key`, `value`, `flags`, `comment`) VALUES
('sql_limit_search', '500', 129, 'default: 500 - max results for search'),
('sql_limit_default', '300', 129, 'default: 300 - max results for listviews'),
('sql_limit_quicksearch', '10', 129, 'default: 10 - max results for suggestions'),
('sql_limit_none', '0', 129, 'default: 0 - unlimited results (i wouldn\'t change that mate)'),
('ttl_rss', '60', 129, 'default: 60 - time to live for RSS (in seconds)'),
('cache_decay', '25200', 129, 'default: 60 * 60 * 7 - time to keep cache in seconds'),
('session_timeout_delay', '3600', 129, 'default: 60 * 60 - non-permanent session times out in time() + X'),
('failed_auth_exclusion', '900', 129, 'default: 15 * 60 - how long an account is closed after exceeding failed_auth_count (in seconds)'),
('failed_auth_count', '5', 129, 'default: 5 - how often invalid passwords are tolerated'),
('name', 'Aowow Database Viewer (ADV)', 136, ' - website title'),
('name_short', 'Aowow', 136, ' - feed title'),
('board_url', 'http://www.wowhead.com/forums?board=', 136, ' - another halfbaked javascript thing..'),
('contact_email', 'feedback@aowow.org', 136, ' - displayed sender for auth-mails, ect'),
('battlegroup', 'Pure Pwnage', 136, ' - pretend, we belong to a battlegroup to satisfy profiler-related Jscripts'),
('allow_register', '0', 132, 'default: 1 - allow/disallow account creation (requires auth_mode 0)'),
('debug', '1', 132, 'default: 0 - disable cache, enable sql-errors, enable error_reporting'),
('maintenance', '0', 132, 'default: 0 - display brb gnomes and block access for non-staff'),
('auth_mode', '0', 145, 'default: 0 - source to auth against - 0:aowow, 1:TC auth-table, 2:external script'),
('rep_req_upvote', '125', 129, 'default: 125 - required reputation to upvote comments'),
('rep_req_downvote', '250', 129, 'default: 250 - required reputation to downvote comments'),
('rep_req_comment', '75', 129, 'default: 75 - required reputation to write a comment / reply'),
('rep_req_supervote', '2500', 129, 'default: 2500 - required reputation for double vote effect'),
('rep_req_votemore_base', '2000', 129, 'default: 2000 - gains more votes past this threshold'),
('rep_reward_register', '100', 129, 'default: 100 - activated an account'),
('rep_reward_upvoted', '5', 129, 'default: 5 - comment received upvote'),
('rep_reward_downvoted', '0', 129, 'default: 0 - comment received downvote'),
('rep_reward_good_report', '10', 129, 'default: 10 - filed an accepted report'),
('rep_reward_bad_report', '0', 129, 'default: 0 - filed a rejected report'),
('rep_reward_dailyvisit', '5', 129, 'default: 5 - daily visit'),
('rep_reward_user_warned', '-50', 129, 'default: -50 - moderator imposed a warning'),
('rep_reward_comment', '1', 129, 'default: 1 - created a comment (not a reply) '),
('rep_req_premium', '25000', 129, 'default: 25000 - required reputation for premium status through reputation'),
('rep_reward_upload', '10', 129, 'default: 10 - suggested / uploaded video / screenshot was approved'),
('rep_reward_article', '100', 129, 'default: 100 - submitted an approved article/guide'),
('rep_reward_user_suspended', '-200', 129, 'default: -200 - moderator revoked rights'),
('user_max_votes', '50', 129, 'default: 50 - vote limit per day'),
('rep_req_votemore_add', '250', 129, 'default: 250 - required reputation per additional vote past threshold'),
('force_ssl', '0', 148, 'default: 0 - enforce SSL, if the server is behind a load balancer'),
('cache_mode', '1', 161, 'default: 1 - set cache method - 0:filecache, 1:memcached'),
('locales', '333', 161, 'default: 0x14D - allowed locales - 0:English, 2:French, 3:German, 6:Spanish, 8:Russian'),
('account_create_save_decay', '604800', 129, 'default: 604800 - time in wich an unconfirmed account cannot be overwritten by new registrations'),
('account_recovery_decay', '300', 129, 'default: 300 - time to recover your account and new recovery requests are blocked'),
('serialize_precision', '4', 65, ' - some derelict code, probably unused'),
('screenshot_min_size', '200', 129, 'default: 200 - minimum dimensions of uploaded screenshots in px (yes, it\'s square)');
/*!40000 ALTER TABLE `aowow_config` ENABLE KEYS */;
/*!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 */;

View File

@@ -1,422 +0,0 @@
ALTER TABLE `aowow_spawns`
ALTER `guid` DROP DEFAULT;
ALTER TABLE `aowow_spawns`
CHANGE COLUMN `guid` `guid` INT(11) NOT NULL FIRST;
DELETE FROM `aowow_spawns` WHERE `guid` < 0;
INSERT INTO `aowow_spawns` VALUES
(-415,1,29556,0,0,1,66,0,22,40,0),
(-414,1,29556,0,0,1,66,0,22,40,0),
(-413,1,29556,0,0,1,66,0,22,40,0),
(-412,1,29556,0,0,1,66,0,22,40,0),
(-411,1,29556,0,0,1,66,0,22,40,0),
(-410,1,29556,0,0,1,66,0,22,40,0),
(-409,1,29556,0,0,1,66,0,22,40,0),
(-408,1,29556,0,0,1,66,0,22,40,0),
(-407,1,29556,0,0,1,66,0,22,40,0),
(-406,1,33780,0,0,1,210,0,67,22,0),
(-405,1,33780,0,0,1,210,0,67,22,0),
(-404,1,33780,0,0,1,210,0,67,21,0),
(-403,1,31260,0,1,1,4813,0,53,62,0),
(-402,1,36658,0,1,1,4813,0,43,23,0),
(-401,1,36477,0,1,1,4813,0,46,39,0),
(-400,1,31260,0,1,1,4813,0,61,56,0),
(-399,1,28717,0,1,1,4813,0,56,56,0),
(-398,1,28717,0,1,1,4813,0,56,56,0),
(-397,1,28717,0,1,1,4813,0,56,56,0),
(-396,1,28717,0,1,1,4813,0,56,56,0),
(-395,1,38309,0,1,1,4812,5,8,53,0),
(-394,1,38308,0,1,1,4812,5,8,53,0),
(-393,1,33695,0,0,1,210,0,44,33,0),
(-392,1,33695,0,0,1,210,0,44,33,0),
(-391,1,33695,0,0,1,210,0,44,33,0),
(-390,1,32840,0,0,1,3430,0,55,53,0),
(-389,1,32830,0,0,1,3430,0,55,53,0),
(-388,1,34822,0,0,1,3430,0,55,53,0),
(-387,1,34824,0,0,1,3430,0,55,53,0),
(-386,1,34819,0,0,1,3430,0,55,53,0),
(-385,1,34823,0,0,1,3430,0,55,53,0),
(-384,1,34812,0,0,1,3430,0,55,53,0),
(-383,1,32840,0,0,1,3430,0,55,53,0),
(-382,1,32830,0,0,1,3430,0,55,53,0),
(-381,1,34822,0,0,1,3430,0,55,53,0),
(-380,1,34824,0,0,1,3430,0,55,53,0),
(-379,1,34819,0,0,1,3430,0,55,53,0),
(-378,1,34823,0,0,1,3430,0,55,53,0),
(-377,1,34812,0,0,1,3430,0,55,53,0),
(-376,1,32840,0,0,1,3430,0,55,53,0),
(-375,1,32830,0,0,1,3430,0,55,53,0),
(-374,1,34822,0,0,1,3430,0,55,53,0),
(-373,1,34824,0,0,1,3430,0,55,53,0),
(-372,1,34819,0,0,1,3430,0,55,53,0),
(-371,1,34823,0,0,1,3430,0,55,53,0),
(-370,1,34812,0,0,1,3430,0,55,53,0),
(-369,1,32840,0,0,1,3430,0,55,53,0),
(-368,1,32830,0,0,1,3430,0,55,53,0),
(-367,1,34822,0,0,1,3430,0,55,53,0),
(-366,1,34824,0,0,1,3430,0,55,53,0),
(-365,1,34819,0,0,1,3430,0,55,53,0),
(-364,1,34823,0,0,1,3430,0,55,53,0),
(-363,1,34812,0,0,1,3430,0,55,53,0),
(-362,1,32840,0,0,1,85,0,62,66,0),
(-361,1,32830,0,0,1,85,0,62,66,0),
(-360,1,34822,0,0,1,85,0,62,66,0),
(-359,1,34824,0,0,1,85,0,62,66,0),
(-358,1,34819,0,0,1,85,0,62,66,0),
(-357,1,34823,0,0,1,85,0,62,66,0),
(-356,1,34812,0,0,1,85,0,62,66,0),
(-355,1,32840,0,0,1,85,0,62,66,0),
(-354,1,32830,0,0,1,85,0,62,66,0),
(-353,1,34822,0,0,1,85,0,62,66,0),
(-352,1,34824,0,0,1,85,0,62,66,0),
(-351,1,34819,0,0,1,85,0,62,66,0),
(-350,1,34823,0,0,1,85,0,62,66,0),
(-349,1,34812,0,0,1,85,0,62,66,0),
(-348,1,32840,0,0,1,85,0,61,66,0),
(-347,1,32830,0,0,1,85,0,61,66,0),
(-346,1,34822,0,0,1,85,0,61,66,0),
(-345,1,34824,0,0,1,85,0,61,66,0),
(-344,1,34819,0,0,1,85,0,61,66,0),
(-343,1,34823,0,0,1,85,0,61,66,0),
(-342,1,34812,0,0,1,85,0,61,66,0),
(-341,1,32840,0,0,1,85,0,61,66,0),
(-340,1,32830,0,0,1,85,0,61,66,0),
(-339,1,34822,0,0,1,85,0,61,66,0),
(-338,1,34824,0,0,1,85,0,61,66,0),
(-337,1,34819,0,0,1,85,0,61,66,0),
(-336,1,34823,0,0,1,85,0,61,66,0),
(-335,1,34812,0,0,1,85,0,61,66,0),
(-334,1,32840,0,0,1,1638,0,30,68,0),
(-333,1,32830,0,0,1,1638,0,30,68,0),
(-332,1,34822,0,0,1,1638,0,30,68,0),
(-331,1,34824,0,0,1,1638,0,30,68,0),
(-330,1,34819,0,0,1,1638,0,30,68,0),
(-329,1,34823,0,0,1,1638,0,30,68,0),
(-328,1,34812,0,0,1,1638,0,30,68,0),
(-327,1,32840,0,0,1,1638,0,30,69,0),
(-326,1,32830,0,0,1,1638,0,30,69,0),
(-325,1,34822,0,0,1,1638,0,30,69,0),
(-324,1,34824,0,0,1,1638,0,30,69,0),
(-323,1,34819,0,0,1,1638,0,30,69,0),
(-322,1,34823,0,0,1,1638,0,30,69,0),
(-321,1,34812,0,0,1,1638,0,30,69,0),
(-320,1,32840,0,0,1,1638,0,31,67,0),
(-319,1,32830,0,0,1,1638,0,31,67,0),
(-318,1,34822,0,0,1,1638,0,31,67,0),
(-317,1,34824,0,0,1,1638,0,31,67,0),
(-316,1,34819,0,0,1,1638,0,31,67,0),
(-315,1,34823,0,0,1,1638,0,31,67,0),
(-314,1,34812,0,0,1,1638,0,31,67,0),
(-313,1,32840,0,0,1,1638,0,31,68,0),
(-312,1,32830,0,0,1,1638,0,31,68,0),
(-311,1,34822,0,0,1,1638,0,31,68,0),
(-310,1,34824,0,0,1,1638,0,31,68,0),
(-309,1,34819,0,0,1,1638,0,31,68,0),
(-308,1,34823,0,0,1,1638,0,31,68,0),
(-307,1,34812,0,0,1,1638,0,31,68,0),
(-306,1,32840,0,0,1,14,0,46,14,0),
(-305,1,32830,0,0,1,14,0,46,14,0),
(-304,1,34822,0,0,1,14,0,46,14,0),
(-303,1,34824,0,0,1,14,0,46,14,0),
(-302,1,34819,0,0,1,14,0,46,14,0),
(-301,1,34823,0,0,1,14,0,46,14,0),
(-300,1,34812,0,0,1,14,0,46,14,0),
(-299,1,32840,0,0,1,14,0,46,15,0),
(-298,1,32830,0,0,1,14,0,46,15,0),
(-297,1,34822,0,0,1,14,0,46,15,0),
(-296,1,34824,0,0,1,14,0,46,15,0),
(-295,1,34819,0,0,1,14,0,46,15,0),
(-294,1,34823,0,0,1,14,0,46,15,0),
(-293,1,34812,0,0,1,14,0,46,15,0),
(-292,1,32840,0,0,1,14,0,46,15,0),
(-291,1,32830,0,0,1,14,0,46,15,0),
(-290,1,34822,0,0,1,14,0,46,15,0),
(-289,1,34824,0,0,1,14,0,46,15,0),
(-288,1,34819,0,0,1,14,0,46,15,0),
(-287,1,34823,0,0,1,14,0,46,15,0),
(-286,1,34812,0,0,1,14,0,46,15,0),
(-285,1,32840,0,0,1,14,0,46,14,0),
(-284,1,32830,0,0,1,14,0,46,14,0),
(-283,1,34822,0,0,1,14,0,46,14,0),
(-282,1,34824,0,0,1,14,0,46,14,0),
(-281,1,34819,0,0,1,14,0,46,14,0),
(-280,1,34823,0,0,1,14,0,46,14,0),
(-279,1,34812,0,0,1,14,0,46,14,0),
(-278,1,32840,0,0,1,3557,0,76,51,0),
(-277,1,32830,0,0,1,3557,0,76,51,0),
(-276,1,34822,0,0,1,3557,0,76,51,0),
(-275,1,34824,0,0,1,3557,0,76,51,0),
(-274,1,34819,0,0,1,3557,0,76,51,0),
(-273,1,34823,0,0,1,3557,0,76,51,0),
(-272,1,34812,0,0,1,3557,0,76,51,0),
(-271,1,32840,0,0,1,3557,0,76,50,0),
(-270,1,32830,0,0,1,3557,0,76,50,0),
(-269,1,34822,0,0,1,3557,0,76,50,0),
(-268,1,34824,0,0,1,3557,0,76,50,0),
(-267,1,34819,0,0,1,3557,0,76,50,0),
(-266,1,34823,0,0,1,3557,0,76,50,0),
(-265,1,34812,0,0,1,3557,0,76,50,0),
(-264,1,32840,0,0,1,3557,0,75,50,0),
(-263,1,32830,0,0,1,3557,0,75,50,0),
(-262,1,34822,0,0,1,3557,0,75,50,0),
(-261,1,34824,0,0,1,3557,0,75,50,0),
(-260,1,34819,0,0,1,3557,0,75,50,0),
(-259,1,34823,0,0,1,3557,0,75,50,0),
(-258,1,34812,0,0,1,3557,0,75,50,0),
(-257,1,32840,0,0,1,3557,0,76,51,0),
(-256,1,32830,0,0,1,3557,0,76,51,0),
(-255,1,34822,0,0,1,3557,0,76,51,0),
(-254,1,34824,0,0,1,3557,0,76,51,0),
(-253,1,34819,0,0,1,3557,0,76,51,0),
(-252,1,34823,0,0,1,3557,0,76,51,0),
(-251,1,34812,0,0,1,3557,0,76,51,0),
(-250,1,32840,0,0,1,1657,0,69,36,0),
(-249,1,32830,0,0,1,1657,0,69,36,0),
(-248,1,34822,0,0,1,1657,0,69,36,0),
(-247,1,34824,0,0,1,1657,0,69,36,0),
(-246,1,34819,0,0,1,1657,0,69,36,0),
(-245,1,34823,0,0,1,1657,0,69,36,0),
(-244,1,34812,0,0,1,1657,0,69,36,0),
(-243,1,32840,0,0,1,1657,0,69,34,0),
(-242,1,32830,0,0,1,1657,0,69,34,0),
(-241,1,34822,0,0,1,1657,0,69,34,0),
(-240,1,34824,0,0,1,1657,0,69,34,0),
(-239,1,34819,0,0,1,1657,0,69,34,0),
(-238,1,34823,0,0,1,1657,0,69,34,0),
(-237,1,34812,0,0,1,1657,0,69,34,0),
(-236,1,32840,0,0,1,1657,0,68,36,0),
(-235,1,32830,0,0,1,1657,0,68,36,0),
(-234,1,34822,0,0,1,1657,0,68,36,0),
(-233,1,34824,0,0,1,1657,0,68,36,0),
(-232,1,34819,0,0,1,1657,0,68,36,0),
(-231,1,34823,0,0,1,1657,0,68,36,0),
(-230,1,34812,0,0,1,1657,0,68,36,0),
(-229,1,32840,0,0,1,1657,0,68,34,0),
(-228,1,32830,0,0,1,1657,0,68,34,0),
(-227,1,34822,0,0,1,1657,0,68,34,0),
(-226,1,34824,0,0,1,1657,0,68,34,0),
(-225,1,34819,0,0,1,1657,0,68,34,0),
(-224,1,34823,0,0,1,1657,0,68,34,0),
(-223,1,34812,0,0,1,1657,0,68,34,0),
(-222,1,32840,0,0,1,12,0,34,50,0),
(-221,1,32830,0,0,1,12,0,34,50,0),
(-220,1,34822,0,0,1,12,0,34,50,0),
(-219,1,34824,0,0,1,12,0,34,50,0),
(-218,1,34819,0,0,1,12,0,34,50,0),
(-217,1,34823,0,0,1,12,0,34,50,0),
(-216,1,34812,0,0,1,12,0,34,50,0),
(-215,1,32840,0,0,1,12,0,34,50,0),
(-214,1,32830,0,0,1,12,0,34,50,0),
(-213,1,34822,0,0,1,12,0,34,50,0),
(-212,1,34824,0,0,1,12,0,34,50,0),
(-211,1,34819,0,0,1,12,0,34,50,0),
(-210,1,34823,0,0,1,12,0,34,50,0),
(-209,1,34812,0,0,1,12,0,34,50,0),
(-208,1,32840,0,0,1,12,0,35,50,0),
(-207,1,32830,0,0,1,12,0,35,50,0),
(-206,1,34822,0,0,1,12,0,35,50,0),
(-205,1,34824,0,0,1,12,0,35,50,0),
(-204,1,34819,0,0,1,12,0,35,50,0),
(-203,1,34823,0,0,1,12,0,35,50,0),
(-202,1,34812,0,0,1,12,0,35,50,0),
(-201,1,32840,0,0,1,12,0,35,50,0),
(-200,1,32830,0,0,1,12,0,35,50,0),
(-199,1,34822,0,0,1,12,0,35,50,0),
(-198,1,34824,0,0,1,12,0,35,50,0),
(-197,1,34819,0,0,1,12,0,35,50,0),
(-196,1,34823,0,0,1,12,0,35,50,0),
(-195,1,34812,0,0,1,12,0,35,50,0),
(-194,1,32840,0,0,1,1,0,52,36,0),
(-193,1,32830,0,0,1,1,0,52,36,0),
(-192,1,34822,0,0,1,1,0,52,36,0),
(-191,1,34824,0,0,1,1,0,52,36,0),
(-190,1,34819,0,0,1,1,0,52,36,0),
(-189,1,34823,0,0,1,1,0,52,36,0),
(-188,1,34812,0,0,1,1,0,52,36,0),
(-187,1,32840,0,0,1,1,0,52,37,0),
(-186,1,32830,0,0,1,1,0,52,37,0),
(-185,1,34822,0,0,1,1,0,52,37,0),
(-184,1,34824,0,0,1,1,0,52,37,0),
(-183,1,34819,0,0,1,1,0,52,37,0),
(-182,1,34823,0,0,1,1,0,52,37,0),
(-181,1,34812,0,0,1,1,0,52,37,0),
(-180,1,32840,0,0,1,1,0,52,37,0),
(-179,1,32830,0,0,1,1,0,52,37,0),
(-178,1,34822,0,0,1,1,0,52,37,0),
(-177,1,34824,0,0,1,1,0,52,37,0),
(-176,1,34819,0,0,1,1,0,52,37,0),
(-175,1,34823,0,0,1,1,0,52,37,0),
(-174,1,34812,0,0,1,1,0,52,37,0),
(-173,1,32840,0,0,1,1,0,52,36,0),
(-172,1,32830,0,0,1,1,0,52,36,0),
(-171,1,34822,0,0,1,1,0,52,36,0),
(-170,1,34824,0,0,1,1,0,52,36,0),
(-169,1,34819,0,0,1,1,0,52,36,0),
(-168,1,34823,0,0,1,1,0,52,36,0),
(-167,1,34812,0,0,1,1,0,52,36,0),
(-166,1,32934,0,1,1,4273,2,51,86,0),
(-165,1,32933,0,1,1,4273,2,51,86,0),
(-164,1,32933,0,1,1,4273,2,51,86,0),
(-163,1,32933,0,1,1,4273,2,51,86,0),
(-162,1,32934,0,1,1,4273,2,51,86,0),
(-161,1,32934,0,1,1,4273,2,51,86,0),
(-160,1,27268,0,0,1,65,0,79,51,0),
(-159,1,27268,0,0,1,65,0,81,51,0),
(-158,1,27662,0,0,1,65,0,77,49,0),
(-157,1,27662,0,0,1,65,0,77,49,0),
(-156,1,27662,0,0,1,65,0,77,49,0),
(-155,1,27662,0,0,1,65,0,77,49,0),
(-154,1,28616,0,0,1,4298,0,52,46,0),
(-153,1,28616,0,0,1,4298,0,53,46,0),
(-152,1,28768,0,0,1,4298,0,54,41,0),
(-151,1,28768,0,0,1,4298,0,58,38,0),
(-150,1,28768,0,0,1,4298,0,57,31,0),
(-149,1,28768,0,0,1,4298,0,54,45,0),
(-148,1,28768,0,0,1,4298,0,55,42,0),
(-147,1,28768,0,0,1,4298,0,53,48,0),
(-146,1,28768,0,0,1,4298,0,55,44,0),
(-145,1,28768,0,0,1,4298,0,56,44,0),
(-144,1,28768,0,0,1,4298,0,56,48,0),
(-143,1,28768,0,0,1,4298,0,53,51,0),
(-142,1,28768,0,0,1,4298,0,58,47,0),
(-141,1,29982,0,1,1,4416,1,46,33,0),
(-140,1,29982,0,1,1,4416,1,46,33,0),
(-139,1,29982,0,1,1,4416,1,46,33,0),
(-138,1,29836,0,1,1,4416,1,48,31,0),
(-137,1,29836,0,1,1,4416,1,46,30,0),
(-136,1,29836,0,1,1,4416,1,45,31,0),
(-135,1,24849,0,1,1,206,1,37,33,0),
(-134,1,24849,0,1,1,206,1,37,33,0),
(-133,1,24849,0,1,1,206,3,11,15,0),
(-132,1,24849,0,1,1,206,3,11,15,0),
(-131,1,24849,0,1,1,206,1,44,36,0),
(-130,1,24849,0,1,1,206,1,44,36,0),
(-129,1,24849,0,1,1,206,1,36,24,0),
(-128,1,24849,0,1,1,206,1,36,24,0),
(-127,1,24849,0,1,1,206,1,34,40,0),
(-126,1,24849,0,1,1,206,1,34,40,0),
(-125,1,24849,0,1,1,206,1,29,36,0),
(-124,1,24849,0,1,1,206,1,29,36,0),
(-123,1,24849,0,1,1,206,3,16,28,0),
(-122,1,24849,0,1,1,206,3,16,28,0),
(-121,1,24849,0,1,1,206,3,16,28,0),
(-120,1,24849,0,1,1,206,1,83,62,0),
(-119,1,24849,0,1,1,206,1,83,62,0),
(-118,1,24849,0,1,1,206,1,83,62,0),
(-117,1,31882,0,0,1,210,0,59,45,0),
(-116,1,31882,0,0,1,210,0,59,45,0),
(-115,1,31882,0,0,1,210,0,59,45,0),
(-114,1,31882,0,0,1,210,0,59,45,0),
(-113,1,31884,0,0,1,210,0,59,45,0),
(-112,1,31891,0,0,1,210,0,59,45,0),
(-111,1,32486,0,0,1,210,0,46,63,0),
(-110,1,32486,0,0,1,210,0,45,64,0),
(-109,1,32486,0,0,1,210,0,44,65,0),
(-108,1,30332,0,0,1,210,0,32,23,0),
(-107,1,30332,0,0,1,210,0,31,26,0),
(-106,1,32190,0,0,1,210,0,51,44,0),
(-105,1,32190,0,0,1,210,0,47,41,0),
(-104,1,32190,0,0,1,210,0,47,41,0),
(-103,1,32190,0,0,1,210,0,50,45,0),
(-102,1,33780,0,0,1,210,0,76,24,0),
(-101,1,30332,0,0,1,210,0,30,22,0),
(-100,1,30332,0,0,1,210,0,29,23,0),
(-99,1,30332,0,0,1,210,0,33,19,0),
(-98,1,30332,0,0,1,210,0,31,20,0),
(-97,1,30332,0,0,1,210,0,30,21,0),
(-96,1,30332,0,0,1,210,0,34,22,0),
(-95,1,30332,0,0,1,210,0,34,24,0),
(-94,1,30332,0,0,1,210,0,35,24,0),
(-93,1,30332,0,0,1,210,0,27,26,0),
(-92,1,30332,0,0,1,210,0,27,27,0),
(-91,1,30332,0,0,1,210,0,27,30,0),
(-90,1,30332,0,0,1,210,0,26,31,0),
(-89,1,30332,0,0,1,210,0,25,33,0),
(-88,1,30332,0,0,1,210,0,26,34,0),
(-87,1,30332,0,0,1,210,0,25,36,0),
(-86,1,30332,0,0,1,210,0,30,35,0),
(-85,1,30332,0,0,1,210,0,24,36,0),
(-84,1,30332,0,0,1,210,0,27,38,0),
(-83,1,31263,0,0,1,210,0,53,54,0),
(-82,1,31263,0,0,1,210,0,58,53,0),
(-81,1,31263,0,0,1,210,0,56,53,0),
(-80,1,31263,0,0,1,210,0,57,54,0),
(-79,1,31263,0,0,1,210,0,59,61,0),
(-78,1,31263,0,0,1,210,0,56,53,0),
(-77,1,31263,0,0,1,210,0,54,51,0),
(-76,1,31263,0,0,1,210,0,58,63,0),
(-75,1,31263,0,0,1,210,0,56,51,0),
(-74,1,31263,0,0,1,210,0,58,57,0),
(-73,1,31263,0,0,1,210,0,58,55,0),
(-72,1,31263,0,0,1,210,0,59,59,0),
(-71,1,29440,0,0,1,67,0,40,86,0),
(-70,1,29440,0,0,1,67,0,40,86,0),
(-69,1,29440,0,0,1,67,0,40,86,0),
(-68,1,29440,0,0,1,67,0,40,86,0),
(-67,1,29440,0,0,1,67,0,40,86,0),
(-66,1,29440,0,0,1,67,0,40,86,0),
(-65,1,29440,0,0,1,67,0,40,86,0),
(-64,1,29440,0,0,1,67,0,40,86,0),
(-63,1,29440,0,0,1,67,0,40,86,0),
(-62,1,27627,0,0,1,394,0,62,42,0),
(-61,1,29694,0,0,1,67,0,34,54,0),
(-60,1,29694,0,0,1,67,0,33,54,0),
(-59,1,29694,0,0,1,67,0,33,54,0),
(-58,1,29694,0,0,1,67,0,33,54,0),
(-57,1,29694,0,0,1,67,0,33,54,0),
(-56,1,29694,0,0,1,67,0,33,54,0),
(-55,1,29694,0,0,1,67,0,33,54,0),
(-54,1,29694,0,0,1,67,0,33,54,0),
(-53,1,29694,0,0,1,67,0,33,55,0),
(-52,1,29694,0,0,1,67,0,34,55,0),
(-51,1,29694,0,0,1,67,0,32,55,0),
(-50,1,29694,0,0,1,67,0,34,55,0),
(-49,1,29694,0,0,1,67,0,34,55,0),
(-48,1,29694,0,0,1,67,0,33,55,0),
(-47,1,29694,0,0,1,67,0,33,55,0),
(-46,1,29694,0,0,1,67,0,34,55,0),
(-45,1,29694,0,0,1,67,0,32,55,0),
(-44,1,29694,0,0,1,67,0,31,60,0),
(-43,1,29694,0,0,1,67,0,31,60,0),
(-42,1,29694,0,0,1,67,0,32,61,0),
(-41,1,29694,0,0,1,67,0,32,61,0),
(-40,1,28053,0,0,1,3711,0,27,60,0),
(-39,1,28006,0,0,1,65,0,54,31,0),
(-38,1,27559,0,0,1,65,0,44,16,0),
(-37,1,27559,0,0,1,65,0,41,20,0),
(-36,1,27559,0,0,1,65,0,40,17,0),
(-35,1,27559,0,0,1,65,0,42,17,0),
(-34,1,27559,0,0,1,65,0,43,16,0),
(-33,1,27559,0,0,1,65,0,42,17,0),
(-32,1,27559,0,0,1,65,0,40,19,0),
(-31,1,27559,0,0,1,65,0,40,17,0),
(-30,1,27559,0,0,1,65,0,40,18,0),
(-29,1,29699,0,0,1,66,0,28,70,0),
(-28,1,29699,0,0,1,66,0,24,69,0),
(-27,1,29699,0,0,1,66,0,29,77,0),
(-26,1,29699,0,0,1,66,0,28,75,0),
(-25,1,29699,0,0,1,66,0,29,82,0),
(-24,1,29699,0,0,1,66,0,27,82,0),
(-23,1,29699,0,0,1,66,0,30,83,0),
(-22,1,29699,0,0,1,66,0,26,82,0),
(-21,1,29699,0,0,1,66,0,25,82,0),
(-20,1,29699,0,0,1,66,0,20,82,0),
(-19,1,29699,0,0,1,66,0,21,83,0),
(-18,1,29699,0,0,1,66,0,30,67,0),
(-17,1,24751,0,0,1,495,0,75,65,0),
(-16,1,33780,0,0,1,210,0,73,20,0),
(-15,1,33780,0,0,1,210,0,73,22,0),
(-14,1,33780,0,0,1,210,0,75,23,0),
(-13,1,33780,0,0,1,210,0,73,23,0),
(-12,1,33780,0,0,1,210,0,74,23,0),
(-11,1,33780,0,0,1,210,0,73,25,0),
(-10,1,33780,0,0,1,210,0,73,26,0),
(-9,1,33780,0,0,1,210,0,73,26,0),
(-8,1,33780,0,0,1,210,0,77,18,0),
(-7,1,33780,0,0,1,210,0,77,18,0),
(-6,1,33780,0,0,1,210,0,77,19,0),
(-5,1,33780,0,0,1,210,0,73,20,0),
(-4,1,33780,0,0,1,210,0,74,20,0),
(-3,1,33780,0,0,1,210,0,75,20,0),
(-2,1,40100,0,1,1,4987,0,49,54,0),
(-1,1,40083,0,1,1,4987,0,49,54,0);

View File

@@ -1,16 +0,0 @@
DROP TABLE IF EXISTS `aowow_screenshots`;
CREATE TABLE IF NOT EXISTS `aowow_screenshots` (
`id` int(16) unsigned NOT NULL AUTO_INCREMENT,
`type` tinyint(4) unsigned NOT NULL,
`typeId` mediumint(9) NOT NULL,
`uploader` int(16) unsigned NOT NULL,
`date` int(32) unsigned NOT NULL,
`width` smallint(5) unsigned NOT NULL,
`height` smallint(5) unsigned NOT NULL,
`caption` varchar(250) DEFAULT NULL,
`status` tinyint(3) unsigned NOT NULL COMMENT 'see defines.php - CC_FLAG_*',
`approvedBy` int(16) unsigned DEFAULT NULL,
`deletedBy` int(16) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`,`typeId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

View File

@@ -1,4 +0,0 @@
ALTER TABLE `aowow_creature`
DROP COLUMN `minDmg`,
DROP COLUMN `maxDmg`,
DROP COLUMN `atkPwr`;

File diff suppressed because it is too large Load Diff

View File

@@ -1,52 +0,0 @@
ALTER TABLE `aowow_creature`
ADD COLUMN `dmgMin` FLOAT UNSIGNED NOT NULL DEFAULT '0' AFTER `trainerRace`,
ADD COLUMN `dmgMax` FLOAT UNSIGNED NOT NULL DEFAULT '0' AFTER `dmgMin`,
ADD COLUMN `mleAtkPwrMin` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `dmgMax`,
ADD COLUMN `mleAtkPwrMax` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `mleAtkPwrMin`,
ADD COLUMN `rngAtkPwrMin` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `mleAtkPwrMax`,
ADD COLUMN `rngAtkPwrMax` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `rngAtkPwrMin`
ADD COLUMN `healthMin` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `aiName`
ADD COLUMN `healthMax` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `healthMin`
ADD COLUMN `manaMin` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `healthMax`
ADD COLUMN `manaMax` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `manaMin`
ADD COLUMN `armorMin` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `manaMax`
ADD COLUMN `armorMax` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `armorMin`
;
-- merge creature_classlevelstats into ?_creature to be searchable
-- edit the table names to fit
-- for min stats
/*
UPDATE
aowow.aowow_creature ac,
world.creature_template ct,
world.creature_classlevelstats cls
SET
ac.healthMin = (CASE ct.exp WHEN 0 THEN cls.basehp0 WHEN 1 THEN cls.basehp1 ELSE cls.basehp2 END) * ct.Health_mod,
ac.manaMin = cls.basemana * ct.Mana_mod,
ac.armorMin = cls.basearmor * ct.Armor_mod,
ac.rngAtkPwrMin = cls.rangedattackpower,
ac.mleAtkPwrMin = cls.attackpower,
ac.dmgMin = (CASE ct.exp WHEN 0 THEN cls.damage_base WHEN 1 THEN cls.damage_exp1 ELSE cls.damage_exp2 END)
WHERE
ac.id = ct.entry AND
ct.unit_class = cls.class AND
ct.minlevel = cls.level;
-- for max stats
UPDATE
aowow.aowow_creature ac,
world.creature_template ct,
world.creature_classlevelstats cls
SET
ac.healthMax = (CASE ct.exp WHEN 0 THEN cls.basehp0 WHEN 1 THEN cls.basehp1 ELSE cls.basehp2 END) * ct.Health_mod,
ac.manaMax = cls.basemana * ct.Mana_mod,
ac.armorMax = cls.basearmor * ct.Armor_mod,
ac.rngAtkPwrMax = cls.rangedattackpower,
ac.mleAtkPwrMax = cls.attackpower,
ac.dmgMax = (CASE ct.exp WHEN 0 THEN cls.damage_base WHEN 1 THEN cls.damage_exp1 ELSE cls.damage_exp2 END)
WHERE
ac.id = ct.entry AND
ct.unit_class = cls.class AND
ct.maxlevel = cls.level;
*/

View File

@@ -1,11 +0,0 @@
CREATE TABLE `aowow_errors` (
`date` INT(10) UNSIGNED NULL DEFAULT NULL,
`version` SMALLINT(5) UNSIGNED NOT NULL,
`phpError` SMALLINT(5) UNSIGNED NOT NULL,
`file` VARCHAR(250) NOT NULL,
`line` SMALLINT(5) UNSIGNED NOT NULL,
`query` VARCHAR(250) NOT NULL,
`userGroups` SMALLINT(5) UNSIGNED NOT NULL,
`message` TEXT NULL,
PRIMARY KEY (`file`, `line`, `phpError`, `version`, `userGroups`)
) COLLATE='utf8_general_ci' ENGINE=MyISAM;