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