bd_reply.sql 889 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : localhost_3306
  4. Source Server Version : 50540
  5. Source Host : localhost:3306
  6. Source Database : building
  7. Target Server Type : MYSQL
  8. Target Server Version : 50540
  9. File Encoding : 65001
  10. Date: 2017-08-17 18:40:58
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for bd_reply
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `bd_reply`;
  17. CREATE TABLE `bd_reply` (
  18. `id` int(11) NOT NULL AUTO_INCREMENT,
  19. `cid` int(11) NOT NULL COMMENT '评价id',
  20. `from_userid` int(11) NOT NULL COMMENT '回复人',
  21. `to_userid` int(11) NOT NULL COMMENT '被回复人',
  22. `content` text NOT NULL COMMENT '回复内容',
  23. `created_at` int(11) NOT NULL,
  24. `status` tinyint(4) NOT NULL,
  25. PRIMARY KEY (`id`)
  26. ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='评价回复表';