dropColumn([ 'cantidad_de_nucleos', 'telefono', 'correo', 'referente_finanzas', ]); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('grupos_de_compra', function (Blueprint $table) { $table->double('cantidad_de_nucleos'); $table->string('telefono'); $table->string('correo'); $table->string('referente_finanzas'); }); } }