
- Modified main.sql to add 4 missing indexes (thanks to ErkDog): char_id on the tables memo/friends, and online/name on the char table. Added upgrade_svn8728.sql to add these indexes to already existing tables. - Changed back the default of case-sensitive to ON since it shouldn't be such a bad performance hog now. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8728 54d463be-8e91-2dee-dedb-b68131a5f0ec
5 lines
179 B
SQL
5 lines
179 B
SQL
ALTER TABLE `friends` ADD INDEX ( `char_id` );
|
|
ALTER TABLE `memo` ADD INDEX ( `char_id` );
|
|
ALTER TABLE `char` ADD INDEX ( `name` );
|
|
ALTER TABLE `char` ADD INDEX ( `online` );
|