Browse Source

2020-1-15

Lex 3 years ago
parent
commit
3b71d6d2dd
2 changed files with 3 additions and 0 deletions
  1. 2 0
      工作周报/2021-01/第2周.md
  2. 1 0
      朋友圈项目/数据库.md

+ 2 - 0
工作周报/2021-01/第2周.md

@@ -51,6 +51,8 @@
 - 需求-朋友圈
 - 需求-朋友圈
   - 搜索
   - 搜索
   - 删除
   - 删除
+- 需求-搜索热词
+- 需求-统计pv
 
 
 
 
 
 

+ 1 - 0
朋友圈项目/数据库.md

@@ -164,6 +164,7 @@ CREATE TABLE `friends_news` (
   `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
   `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
   `article_id` int(11) NOT NULL DEFAULT 0 COMMENT '文章id',
   `article_id` int(11) NOT NULL DEFAULT 0 COMMENT '文章id',
   `comment_id` int(11) NOT NULL DEFAULT 0 COMMENT '评论id',
   `comment_id` int(11) NOT NULL DEFAULT 0 COMMENT '评论id',
+  `reply_id` int(11) NOT NULL DEFAULT 0 COMMENT '回复id',
   `uid` int(11) NOT NULL DEFAULT 0 COMMENT '点赞和评论的对象id 也就是此记录的所有者id',
   `uid` int(11) NOT NULL DEFAULT 0 COMMENT '点赞和评论的对象id 也就是此记录的所有者id',
   `type` tinyint(1) NOT NULL DEFAULT 1 COMMENT '类型 1=点赞 2=评论',
   `type` tinyint(1) NOT NULL DEFAULT 1 COMMENT '类型 1=点赞 2=评论',
   `content` varchar(255) NOT NULL DEFAULT '' COMMENT '内容',
   `content` varchar(255) NOT NULL DEFAULT '' COMMENT '内容',