migrate/1725433862_change_square_index.up.sql

6 lines
215 B
MySQL
Raw Normal View History

2024-09-04 15:31:46 +08:00
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;