integer('cantidad_ollas')->nullable(); }); Subpedido::where('tipo_pedido_id', 1)->update(['cantidad_ollas' => 0]); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('subpedidos', function (Blueprint $table) { $table->dropColumn('cantidad_ollas'); }); } }