topfans/backend/scripts/migrate_asset_likes_cursor_pagination.sql
2026-05-22 18:06:33 +08:00

3 lines
223 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.

-- 为游标分页新增索引(幂等)
-- 支持查询WHERE asset_id = ? AND created_at < ? ORDER BY created_at DESC
CREATE INDEX IF NOT EXISTS idx_asset_likes_asset_created ON asset_likes(asset_id, created_at DESC);