1
0

test_result.sql 813 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : zhaoxingrui
  4. Source Server Type : MySQL
  5. Source Server Version : 80016
  6. Source Host : localhost:3306
  7. Source Schema : devcloud
  8. Target Server Type : MySQL
  9. Target Server Version : 80016
  10. File Encoding : 65001
  11. Date: 20/04/2021 21:44:04
  12. */
  13. CREATE TABLE `test_result` (
  14. `id` int(11) NOT NULL AUTO_INCREMENT,
  15. `test_id` int(11) NOT NULL,
  16. `execute_time` datetime NOT NULL,
  17. `success` int(11) NOT NULL DEFAULT '0',
  18. `failure` int(11) NOT NULL DEFAULT '0',
  19. `time_list` text NOT NULL,
  20. `max_time` int(11) NOT NULL,
  21. `min_time` int(11) NOT NULL,
  22. `average_time` double NOT NULL,
  23. PRIMARY KEY (`id`)
  24. ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  25. SET FOREIGN_KEY_CHECKS = 1;