mirror of
https://github.com/goharbor/harbor
synced 2025-04-19 21:20:32 +00:00
4 lines
301 B
SQL
4 lines
301 B
SQL
CREATE INDEX IF NOT EXISTS idx_artifact_push_time ON artifact (push_time);
|
|
CREATE INDEX IF NOT EXISTS idx_tag_push_time ON tag (push_time);
|
|
CREATE INDEX IF NOT EXISTS idx_tag_artifact_id ON tag (artifact_id);
|
|
CREATE INDEX IF NOT EXISTS idx_artifact_reference_child_id ON artifact_reference (child_id); |