/* Navicat MySQL Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 50722 Source Host : localhost:3306 Source Schema : db_notify Target Server Type : MySQL Target Server Version : 50722 File Encoding : 65001 Date: 21/08/2019 20:08:42 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for t_reg -- ---------------------------- DROP TABLE IF EXISTS `t_reg`; CREATE TABLE `t_reg` ( `id` int(11) NOT NULL AUTO_INCREMENT, `regID` varchar(32) DEFAULT NULL, `create_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `idx_regid` (`regID`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; SET FOREIGN_KEY_CHECKS = 1;