rathena/sql-files/upgrades/upgrade_20211008.sql
Aleos 0eeb464119
Adjusts bonus_script SQL table keys (#6276)
Fixes #5405.
Adds a normal key index as the uniqueness can be less restrictive.
Removes the primary keys.

Thanks to @Surefirer, @Patotron, and @gen1x8!
2021-10-08 17:57:08 +02:00

4 lines
84 B
SQL

ALTER TABLE `bonus_script`
DROP PRIMARY KEY,
ADD KEY `char_id` (`char_id`);