Files
be.ems/database/upgrade/monitor_io.sql
2023-08-16 14:08:55 +08:00

37 lines
1.3 KiB
SQL

/*
Navicat Premium Data Transfer
Source Server : root@192.168.0.229
Source Server Type : MariaDB
Source Server Version : 100335 (10.3.35-MariaDB-log)
Source Host : 192.168.0.229:33066
Source Schema : omc_db
Target Server Type : MariaDB
Target Server Version : 100335 (10.3.35-MariaDB-log)
File Encoding : 65001
Date: 16/08/2023 09:31:49
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for monitor_io
-- ----------------------------
DROP TABLE IF EXISTS `monitor_io`;
CREATE TABLE `monitor_io` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'id',
`created_at` datetime NULL DEFAULT NULL COMMENT '创建时间',
`updated_at` datetime NULL DEFAULT NULL COMMENT '更新时间',
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '磁盘名',
`read` int(11) NULL DEFAULT NULL COMMENT '读取K',
`write` int(11) NULL DEFAULT NULL COMMENT '写入K',
`count` int(11) NULL DEFAULT NULL COMMENT '次数',
`time` int(11) NULL DEFAULT NULL COMMENT '耗时',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 46 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '监控_磁盘IO' ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;