| 1234567891011121314151617181920212223242526272829 |
- /*
- Navicat Premium Data Transfer
- Source Server : zhaoxingrui
- Source Server Type : MySQL
- Source Server Version : 80016
- Source Host : localhost:3306
- Source Schema : devcloud
- Target Server Type : MySQL
- Target Server Version : 80016
- File Encoding : 65001
- Date: 20/04/2021 21:44:04
- */
- CREATE TABLE `test_result` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `test_id` int(11) NOT NULL,
- `execute_time` datetime NOT NULL,
- `success` int(11) NOT NULL DEFAULT '0',
- `failure` int(11) NOT NULL DEFAULT '0',
- `time_list` text NOT NULL,
- `max_time` int(11) NOT NULL,
- `min_time` int(11) NOT NULL,
- `average_time` double NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
- SET FOREIGN_KEY_CHECKS = 1;
|