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.

74 lines
2.7 KiB

5 months ago
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : test
  4. Source Server Type : MySQL
  5. Source Server Version : 80026 (8.0.26)
  6. Source Host : localhost:3306
  7. Source Schema : crowdfunding_system
  8. Target Server Type : MySQL
  9. Target Server Version : 80026 (8.0.26)
  10. File Encoding : 65001
  11. Date: 20/12/2024 15:52:53
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for crowdfundinginfo
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `crowdfundinginfo`;
  19. CREATE TABLE `crowdfundinginfo` (
  20. `id` int NOT NULL AUTO_INCREMENT,
  21. `title` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
  22. `target_number` int NOT NULL,
  23. `now_number` int NOT NULL,
  24. `status` int NOT NULL,
  25. PRIMARY KEY (`id`) USING BTREE
  26. ) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
  27. -- ----------------------------
  28. -- Records of crowdfundinginfo
  29. -- ----------------------------
  30. INSERT INTO `crowdfundinginfo` VALUES (1, '请给我钱', 100, 5, 1);
  31. -- ----------------------------
  32. -- Table structure for participants
  33. -- ----------------------------
  34. DROP TABLE IF EXISTS `participants`;
  35. CREATE TABLE `participants` (
  36. `id` int NOT NULL AUTO_INCREMENT,
  37. `jwcode` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
  38. `identity` int NOT NULL,
  39. `creat_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  40. PRIMARY KEY (`id`) USING BTREE
  41. ) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
  42. -- ----------------------------
  43. -- Records of participants
  44. -- ----------------------------
  45. INSERT INTO `participants` VALUES (6, '10052', 0, '2024-12-20 14:59:29');
  46. -- ----------------------------
  47. -- Table structure for participants_del_save
  48. -- ----------------------------
  49. DROP TABLE IF EXISTS `participants_del_save`;
  50. CREATE TABLE `participants_del_save` (
  51. `id` int NOT NULL AUTO_INCREMENT,
  52. `jwcode` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
  53. `identity` int NOT NULL,
  54. `creat_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  55. PRIMARY KEY (`id`) USING BTREE
  56. ) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
  57. -- ----------------------------
  58. -- Records of participants_del_save
  59. -- ----------------------------
  60. INSERT INTO `participants_del_save` VALUES (5, '10012', 1, '2024-12-20 14:59:42');
  61. INSERT INTO `participants_del_save` VALUES (6, '10010', 1, '2024-12-20 15:00:48');
  62. INSERT INTO `participants_del_save` VALUES (7, '10011', 1, '2024-12-20 15:24:18');
  63. SET FOREIGN_KEY_CHECKS = 1;