id(); $table->bigInteger('uid')->comment('用户id')->index(); $table->text('content')->nullable()->comment('内容'); $table->dateTime('send_time')->comment('发送时间')->index(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('diary_letters'); } }