· 10 years ago · Sep 22, 2016, 03:52 AM
1/*
2Navicat MySQL Data Transfer
3
4Source Server : localhost_3306
5Source Server Version : 50051
6Source Host : localhost:3306
7Source Database : cq
8
9Target Server Type : MYSQL
10Target Server Version : 50051
11File Encoding : 65001
12
13Date: 2016-09-22 05:49:23
14*/
15
16SET FOREIGN_KEY_CHECKS=0;
17
18-- ----------------------------
19-- Table structure for status
20-- ----------------------------
21DROP TABLE IF EXISTS `status`;
22CREATE TABLE `status` (
23 `id` int(4) unsigned NOT NULL auto_increment,
24 `EntityID` int(4) NOT NULL default '0',
25 `status` bigint(255) unsigned NOT NULL default '0',
26 `time` bigint(16) default '0',
27 PRIMARY KEY (`id`)
28) ENGINE=MyISAM AUTO_INCREMENT=8897 DEFAULT CHARSET=utf8;
29
30-- ----------------------------
31-- Records of status
32-- ----------------------------