mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-08-29 05:52:08 -04:00
7 lines
145 B
SQL
7 lines
145 B
SQL
-- migrate:up
|
|
CREATE INDEX IF NOT EXISTS "idx_timestamp" ON "traffic_log" ("timestamp");
|
|
|
|
-- migrate:down
|
|
DROP INDEX IF EXISTS "idx_timestamp";
|
|
|