mm_mysql 2.0.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +266 -234
- package/db.js +516 -286
- package/index.js +981 -394
- package/package.json +13 -13
- package/sql.js +904 -396
- package/config.json +0 -8
- package/link_model.js +0 -132
- package/sql.json +0 -56
- package/test.js +0 -846
- package/upgrade.sql +0 -34
package/upgrade.sql
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Navicat Premium Data Transfer
|
|
3
|
-
|
|
4
|
-
Source Server : 本地
|
|
5
|
-
Source Server Type : MySQL
|
|
6
|
-
Source Server Version : 50726
|
|
7
|
-
Source Host : localhost:3306
|
|
8
|
-
Source Schema : card
|
|
9
|
-
|
|
10
|
-
Target Server Type : MySQL
|
|
11
|
-
Target Server Version : 50726
|
|
12
|
-
File Encoding : 65001
|
|
13
|
-
|
|
14
|
-
Date: 08/04/2025 09:01:37
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
SET NAMES utf8mb4;
|
|
18
|
-
SET FOREIGN_KEY_CHECKS = 0;
|
|
19
|
-
|
|
20
|
-
-- ----------------------------
|
|
21
|
-
-- Table structure for test
|
|
22
|
-
-- ----------------------------
|
|
23
|
-
DROP TABLE IF EXISTS `test`;
|
|
24
|
-
CREATE TABLE `test` (
|
|
25
|
-
`test_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
26
|
-
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
|
|
27
|
-
PRIMARY KEY (`test_id`) USING BTREE
|
|
28
|
-
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
29
|
-
|
|
30
|
-
-- ----------------------------
|
|
31
|
-
-- Records of test
|
|
32
|
-
-- ----------------------------
|
|
33
|
-
|
|
34
|
-
SET FOREIGN_KEY_CHECKS = 1;
|