* added column bitIdx to ?_titles * actually don't use COLLATE as it ignores indizes. Just search with lowerCase and properCase simultaneously
7 lines
239 B
SQL
7 lines
239 B
SQL
ALTER TABLE `aowow_titles`
|
|
ADD COLUMN `bitIdx` tinyint(3) unsigned NOT NULL AFTER `eventId`,
|
|
ADD INDEX `bitIdx` (`bitIdx`);
|
|
|
|
DROP TABLE IF EXISTS `dbc_chartitles`;
|
|
|
|
UPDATE `aowow_dbversion` SET `sql` = CONCAT(`sql`, ' titles');
|