From 74488ddceb4cb006432a8396ac2c727115414dfe Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 5 Feb 2021 14:27:56 -0800 Subject: [PATCH 1/2] Added provider column to oauth_clients table for passport upgrade --- ..._05_172502_add_provider_to_oauth_table.php | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 database/migrations/2021_02_05_172502_add_provider_to_oauth_table.php diff --git a/database/migrations/2021_02_05_172502_add_provider_to_oauth_table.php b/database/migrations/2021_02_05_172502_add_provider_to_oauth_table.php new file mode 100644 index 000000000000..7c74d47e3b5a --- /dev/null +++ b/database/migrations/2021_02_05_172502_add_provider_to_oauth_table.php @@ -0,0 +1,34 @@ +string('provider')->after('secret')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('oauth_clients', function (Blueprint $table) { + $table->dropColumn('provider'); + }); + + } +} From 681c41bd188400435a24c4d8d927e705876c6017 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 5 Feb 2021 14:28:31 -0800 Subject: [PATCH 2/2] Bumped version --- config/version.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/version.php b/config/version.php index 583c0667a099..7585342efc25 100644 --- a/config/version.php +++ b/config/version.php @@ -1,10 +1,10 @@ 'v5.1.0', - 'full_app_version' => 'v5.1.0 - build 5772-g124343911', - 'build_version' => '5772', + 'app_version' => 'v5.1.1', + 'full_app_version' => 'v5.1.1 - build 5811-', + 'build_version' => '5811', 'prerelease_version' => '', - 'hash_version' => 'g124343911', - 'full_hash' => 'v5.1.0-46-g124343911', + 'hash_version' => '', + 'full_hash' => 'v5.1.1', 'branch' => 'develop', ); \ No newline at end of file