main
parent
60699a7abf
commit
08bb66d6c2
@ -0,0 +1,37 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server : 10.10.14.199
|
||||
Source Server Type : MySQL
|
||||
Source Server Version : 100123 (10.1.23-MariaDB)
|
||||
Source Host : 10.10.14.199:22066
|
||||
Source Schema : dsideal_db
|
||||
|
||||
Target Server Type : MySQL
|
||||
Target Server Version : 100123 (10.1.23-MariaDB)
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 15/06/2023 11:38:49
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for t_dingtalk_progress
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `t_dingtalk_progress`;
|
||||
CREATE TABLE `t_dingtalk_progress` (
|
||||
`table_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '表名',
|
||||
`sync_last_update_time` timestamp NULL DEFAULT NULL COMMENT '最后同步时间戳',
|
||||
PRIMARY KEY (`table_name`) USING BTREE
|
||||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of t_dingtalk_progress
|
||||
-- ----------------------------
|
||||
INSERT INTO `t_dingtalk_progress` VALUES ('t_base_organization', '2023-06-15 11:38:16');
|
||||
INSERT INTO `t_dingtalk_progress` VALUES ('t_base_person', '2023-06-15 11:38:24');
|
||||
INSERT INTO `t_dingtalk_progress` VALUES ('t_sys_person_role', '2023-06-15 11:38:34');
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
Loading…
Reference in new issue