6 lines
215 B
SQL
6 lines
215 B
SQL
ALTER TABLE `ufutx_dynamic_square`
|
|
DROP INDEX `status`,
|
|
DROP INDEX `is_show`,
|
|
DROP INDEX `is_speech`,
|
|
ADD INDEX `status`(`status`, `is_show`, `is_speech`) USING BTREE,
|
|
ADD INDEX `user_name`(`user_name`) USING BTREE; |