mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* noticed having comments inside querys in these files breaks them * also there appear to be files with \r line endings left
16 lines
507 B
SQL
16 lines
507 B
SQL
DROP TABLE IF EXISTS `aowow_talents`;
|
|
CREATE TABLE `aowow_talents` (
|
|
`id` smallint(5) unsigned NOT NULL,
|
|
`class` tinyint(3) unsigned NOT NULL,
|
|
`tab` tinyint(3) unsigned NOT NULL,
|
|
`row` tinyint(3) unsigned NOT NULL,
|
|
`col` tinyint(3) unsigned NOT NULL,
|
|
`spell` mediumint(8) unsigned NOT NULL,
|
|
`rank` tinyint(3) unsigned NOT NULL,
|
|
PRIMARY KEY (`id`, `rank`),
|
|
INDEX `spell` (`spell`),
|
|
INDEX `class` (`class`)
|
|
) ENGINE=MyISAM;
|
|
|
|
UPDATE `aowow_dbversion` SET `sql` = CONCAT(`sql`, ' talents');
|