Mike %!s(int64=8) %!d(string=hai) anos
pai
achega
b19e6af667

+ 4 - 3
server/database/migrations/2017_06_29_095155_create_comment_info_table.php

xqd
@@ -16,13 +16,14 @@ class CreateCommentInfoTable extends Migration
         Schema::create('comments_info', function (Blueprint $table) {
             $table->increments('id');
             $table->integer('interaction_id')->comment('梦想动态ID');
-            $table->integer('user_id')->comment('评用户id');
-            $table->string('user_avatar')->default('')->comment('评用户头像');
-            $table->string('user_nickname')->default('')->comment('评用户昵称');
+            $table->integer('user_id')->comment('评用户id');
+            $table->string('user_avatar')->default('')->comment('评用户头像');
+            $table->string('user_nickname')->default('')->comment('评用户昵称');
             $table->integer('to_user_id')->nullable()->comment('回复用户id');
             $table->string('to_user_avatar')->default('')->comment('回复用户头像');
             $table->string('to_user_nickname')->default('')->comment('回复用户昵称');
             $table->tinyInteger('level')->default(0)->comment('评论星级');
+            $table->tinyInteger('is_read')->default(0)->comment('是否阅读');
             $table->text('content')->comment('评论内容');
             $table->timestamps();
             $table->date('reply_time')->nullable()->comment('回复时间');