This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-argus-service/db/20181229/traffic_statistic.sql

9 lines
360 B
MySQL
Raw Normal View History

2019-01-04 11:57:31 +06:00
CREATE TABLE `traffic_asn_statistic` (
`stat_id` bigint(20) NOT NULL AUTO_INCREMENT,
`asn_type` int(11) NOT NULL COMMENT '1-src_asn 2-dst_asn',
`asn` varchar(64) NOT NULL,
`packets` bigint(20) NOT NULL,
`bytes` bigint(20) NOT NULL,
`stat_time` datetime NOT NULL ,
PRIMARY KEY (`stat_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;