-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice-order.sql
34 lines (28 loc) · 1.04 KB
/
service-order.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
34
/*
Navicat Premium Data Transfer
Source Server : localhost3306
Source Server Type : MySQL
Source Server Version : 50562
Source Host : localhost:3306
Source Schema : service-order
Target Server Type : MySQL
Target Server Version : 50562
File Encoding : 65001
Date: 17/10/2020 10:11:07
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for tbl_order_event
-- ----------------------------
DROP TABLE IF EXISTS `tbl_order_event`;
CREATE TABLE `tbl_order_event` (
`id` int(11) NOT NULL,
`order_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`process` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`content` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
SET FOREIGN_KEY_CHECKS = 1;