timestamp('recommend_at')->nullable()->comment('推荐时间'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('authentications', function (Blueprint $table) { $table->dropColumn(['recommend_at']); }); } }