mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-08-29 05:52:08 -04:00
7 lines
183 B
SQL
7 lines
183 B
SQL
-- migrate:up
|
|
CREATE INDEX idx_traffic_log_time_user_sub ON traffic_log (timestamp, user_id, subscribe_id);
|
|
|
|
-- migrate:down
|
|
DROP INDEX idx_traffic_log_time_user_sub ON traffic_log;
|
|
|