From 67a06abcdc53621176c0af5a0ce3c95ecf6be4ff Mon Sep 17 00:00:00 2001 From: Aaron Peachey Date: Mon, 20 Apr 2020 08:25:09 +1000 Subject: [PATCH] correct version check - Laravel introduced bigIncrements in 5.8 (#449) --- .../migrations/2020_01_29_231006_create_charges_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShopifyApp/resources/database/migrations/2020_01_29_231006_create_charges_table.php b/src/ShopifyApp/resources/database/migrations/2020_01_29_231006_create_charges_table.php index 80493d01..5edabfbf 100644 --- a/src/ShopifyApp/resources/database/migrations/2020_01_29_231006_create_charges_table.php +++ b/src/ShopifyApp/resources/database/migrations/2020_01_29_231006_create_charges_table.php @@ -77,7 +77,7 @@ public function up() // Allows for soft deleting $table->softDeletes(); - if ($this->getLaravelVersion() < 5.9) { + if ($this->getLaravelVersion() < 5.8) { $table->integer('user_id')->unsigned(); } else { $table->bigInteger('user_id')->unsigned();