id(); $table->string('nombre'); $table->foreignId('grupo_de_compra_id'); $table->boolean('aprobado')->nullable(); $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'); } }