Skip to content

Commit

Permalink
加上丢失的字段audit_consumer.permits_per_second
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoyf committed Jan 7, 2021
1 parent 8f9c681 commit 97d4f56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mq-cloud/sql/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ CREATE TABLE `audit_consumer` (
`consumer` varchar(64) NOT NULL COMMENT '消费者名字',
`consume_way` int(4) NOT NULL DEFAULT '0' COMMENT '0:集群消费,1:广播消费',
`trace_enabled` int(4) NOT NULL DEFAULT '0' COMMENT '0:不开启trace,1:开启trace',
`permits_per_second` int(11) DEFAULT NULL COMMENT 'qps',
UNIQUE KEY `tid` (`tid`,`consumer`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='审核消费者相关表';

Expand Down Expand Up @@ -1014,4 +1015,4 @@ CREATE TABLE `audit_topic_traffic_warn` (
`aid` int(11) NOT NULL COMMENT '审核id',
`tid` int(11) NOT NULL COMMENT 'topic id',
`traffic_warn_enabled` int(11) NOT NULL COMMENT '0:不开启topic流量预警,1:开启topic流量预警'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='审核topic trafficWarn相关表';
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='审核topic trafficWarn相关表';

0 comments on commit 97d4f56

Please sign in to comment.