12345678910111213141516171819202122232425262728293031 |
- /*
- Navicat MySQL Data Transfer
- Source Server : localhost_3306
- Source Server Version : 50540
- Source Host : localhost:3306
- Source Database : building
- Target Server Type : MYSQL
- Target Server Version : 50540
- File Encoding : 65001
- Date: 2017-08-17 18:40:58
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for bd_reply
- -- ----------------------------
- DROP TABLE IF EXISTS `bd_reply`;
- CREATE TABLE `bd_reply` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `cid` int(11) NOT NULL COMMENT '评价id',
- `from_userid` int(11) NOT NULL COMMENT '回复人',
- `to_userid` int(11) NOT NULL COMMENT '被回复人',
- `content` text NOT NULL COMMENT '回复内容',
- `created_at` int(11) NOT NULL,
- `status` tinyint(4) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='评价回复表';
|