timestamp('last_status_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('profiles', function (Blueprint $table) { $table->dropColumn('last_status_at'); }); } }