Newer
Older
NotifyInfo / notifyServer / db_notify.sql
bello on 26 Jul 2019 974 bytes app and server
/*
 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: 26/07/2019 00:09: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 AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4;

-- ----------------------------
-- Records of t_reg
-- ----------------------------
BEGIN;
INSERT INTO `t_reg` VALUES (8, '140fe1da9edfcf6a398', '2019-07-26 00:07:36');
COMMIT;

SET FOREIGN_KEY_CHECKS = 1;