Remove migration for vendor_id

This commit is contained in:
David Bomba 2023-02-05 17:25:15 +11:00
parent 2ea5d47fd8
commit d7ec070cc2

View File

@ -13,11 +13,11 @@ return new class extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('purchase_orders', function (Blueprint $table){ // Schema::table('purchase_orders', function (Blueprint $table){
$table->foreign('vendor_id')->references('id')->on('vendors')->onDelete('cascade')->onUpdate('cascade'); // $table->foreign('vendor_id')->references('id')->on('vendors')->onDelete('cascade')->onUpdate('cascade');
}); // });
} }
/** /**