-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathedge_code.sql
33 lines (27 loc) · 1003 Bytes
/
edge_code.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
Navicat Premium Data Transfer
Source Server : localhost
Source Server Type : MySQL
Source Server Version : 50726
Source Host : localhost:3306
Source Schema : goedge
Target Server Type : MySQL
Target Server Version : 50726
File Encoding : 65001
Date: 30/11/2022 19:37:04
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for edge_code
-- ----------------------------
DROP TABLE IF EXISTS `edge_code`;
CREATE TABLE `edge_code` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` int(11) NOT NULL,
`number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`timeStamp` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 52 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;