You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB

7 months ago
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : 192.168.3.20
  4. Source Server Type : MySQL
  5. Source Server Version : 80035
  6. Source Host : 192.168.3.20:3306
  7. Source Schema : test_platform
  8. Target Server Type : MySQL
  9. Target Server Version : 80035
  10. File Encoding : 65001
  11. Date: 17/06/2024 15:17:49
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for func_car_app
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `func_car_app`;
  19. CREATE TABLE `func_car_app` (
  20. `oper_id` bigint NOT NULL COMMENT '主键',
  21. `name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT '0' COMMENT '商品名称',
  22. `status` int NULL DEFAULT 0 COMMENT '状态',
  23. `create_time` datetime NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '操作时间',
  24. `update_time` int NULL DEFAULT NULL COMMENT '单位(秒)',
  25. `user_id` bigint NULL DEFAULT NULL,
  26. PRIMARY KEY (`oper_id`) USING BTREE,
  27. INDEX `idx_sys_oper_log_bt`(`name` ASC) USING BTREE,
  28. INDEX `idx_sys_oper_log_s`(`status` ASC) USING BTREE,
  29. INDEX `idx_sys_oper_log_ot`(`create_time` ASC) USING BTREE
  30. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '兼容可靠性测试系统-应用程序兼容性测试工具' ROW_FORMAT = Dynamic;
  31. SET FOREIGN_KEY_CHECKS = 1;