sql
This commit is contained in:
parent
ab11836c23
commit
6e7c224109
|
@ -0,0 +1,10 @@
|
|||
DROP TABLE IF EXISTS `t_api_count_history`;
|
||||
CREATE TABLE `t_api_count_history` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`version` bigint COMMENT '数据版本号,从0递增',
|
||||
`current_count`bigint COMMENT '当前总数,只有最新一条有效',
|
||||
`history_count`bigint COMMENT '保存历史重启的数量',
|
||||
`create_time` datetime NULL DEFAULT NULL,
|
||||
`update_time` datetime NULL DEFAULT NULL,
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB COMMENT = '网关历史调用总数';
|
Loading…
Reference in New Issue