double('devoluciones_total', 10, 2)->default(0); $table->string('devoluciones_notas')->default(""); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('subpedidos', function (Blueprint $table) { $table->dropColumn('devoluciones_total'); $table->dropColumn('devoluciones_notas'); }); } }