id(); $table->string('nombre'); $table->foreignId('grupo_de_compra_id'); $table->boolean('aprobado')->default(false); $table->double('devoluciones_total', 10, 2)->default(0); $table->string('devoluciones_notas')->default(""); $table->timestamps(); }); Schema::create('producto_subpedido', function (Blueprint $table) { $table->id(); $table->foreignId('subpedido_id'); $table->foreignId('producto_id'); $table->integer('cantidad')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('producto_subpedido'); Schema::dropIfExists('subpedidos'); } }