id(); $table->unsignedBigInteger('price'); $table->foreignId('product_id')->constrained(); $table->foreignId('customer_id')->constrained(); $table->foreignId('supplier_id')->constrained(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('prices'); } };