id(); $table->bigInteger('uid')->comment('用户id')->index(); $table->bigInteger('level_id')->comment('心情好坏id')->index(); $table->json('tag')->nullable()->comment('标题id'); $table->string('title')->nullable()->comment('标题'); $table->string('content')->nullable()->comment('内容'); $table->integer('score')->default(0)->comment('分数'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('diary_moods'); } }