Merge branch 'v5-develop' of https://github.com/turbo124/invoiceninja into v5-develop

This commit is contained in:
David Bomba 2023-02-05 18:58:38 +11:00
commit 2475a5f8b9

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');
});
// });
}
/**