Files
aowow/setup/sql/updates/v1.1/1439297934_01.sql
Sarjuuk 647be4a946 Setup/SQL
* move sql files into its own folder.
 * move outdated updates out of the update folder, sorted by github tags
 * split up the db dump so my editor doesn't try to hang itself if i dare to touch that file
2025-09-25 18:44:48 +02:00

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');