Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename inde #107

Merged
merged 1 commit into from
May 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mysql/update-20220407-release-1.6.1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE iast_vulnerability MODIFY COLUMN taint_value varchar(4000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '污点值';
CREATE INDEX iast_vulnerability_latest_time_IDX USING BTREE ON iast_vulnerability (latest_time,level_id);
CREATE INDEX iast_asset_level_id_IDX USING BTREE ON iast_asset (level_id,dt);
CREATE INDEX iast_vulnerability_uri_IDX USING BTREE ON iast_vulnerability (uri,agent_id);
CREATE INDEX iast_vulnerability_uri_agent_id_IDX USING BTREE ON iast_vulnerability (uri,agent_id);
ALTER TABLE iast_api_route ADD from_where INT DEFAULT 1 NOT NULL COMMENT '1-agent,2-method_pool';
CREATE INDEX iast_agent_method_pool_id_IDX USING BTREE ON iast_agent_method_pool (id,agent_id,http_scheme);
CREATE INDEX iast_agent_bind_project_id_single_IDX USING BTREE ON iast_agent (bind_project_id);
Expand Down