fix index of metric_view and alert_aggr_view

This commit is contained in:
Ulric Qin 2022-03-28 10:15:53 +08:00
parent c557e383b6
commit d3576440d4
1 changed files with 2 additions and 2 deletions

View File

@ -305,7 +305,7 @@ CREATE TABLE `metric_view` (
`create_by` bigint not null default 0 comment 'user id', `create_by` bigint not null default 0 comment 'user id',
`update_at` bigint not null default 0, `update_at` bigint not null default 0,
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
KEY (`user_id`) KEY (`create_by`)
) ENGINE=InnoDB DEFAULT CHARSET = utf8mb4; ) ENGINE=InnoDB DEFAULT CHARSET = utf8mb4;
CREATE TABLE `alert_aggr_view` ( CREATE TABLE `alert_aggr_view` (
@ -317,7 +317,7 @@ CREATE TABLE `alert_aggr_view` (
`create_by` bigint not null default 0 comment 'user id', `create_by` bigint not null default 0 comment 'user id',
`update_at` bigint not null default 0, `update_at` bigint not null default 0,
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
KEY (`user_id`) KEY (`create_by`)
) ENGINE=InnoDB DEFAULT CHARSET = utf8mb4; ) ENGINE=InnoDB DEFAULT CHARSET = utf8mb4;
insert into alert_aggr_view(name, rule, cate) values('GroupBy BusiGroup, Severity', 'field:group_name::field:severity', 0); insert into alert_aggr_view(name, rule, cate) values('GroupBy BusiGroup, Severity', 'field:group_name::field:severity', 0);