Merge pull request #8251 from turbo124/v5-develop

Remove migration for vendor_id
This commit is contained in:
David Bomba 2023-02-05 17:25:28 +11:00 committed by GitHub
commit fa2501f6d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,11 +13,11 @@ return new class extends Migration
*/
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');
});
// });
}
/**