hyapp-server/server/admin/migrations/122_external_banner_region_scope_index.sql
2026-07-23 16:47:40 +08:00

9 lines
579 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci;
-- 外管 Banner 列表固定 app_code + region_id并在同一区域内按状态和顺序读取。
-- 将 region 放在 platform 前,避免未指定 platform 的门户列表退化为全 App 扫描。
-- 索引构建会扫描 admin_app_banners该配置表预期规模有限但上线前仍应确认
-- TABLE_ROWS/DATA_LENGTH并避开 Banner 集中发布窗口以降低元数据锁等待。
ALTER TABLE admin_app_banners
ADD INDEX idx_admin_app_banners_region_status_sort (app_code, region_id, status, sort_order, id);