diff --git a/config/version.php b/config/version.php index de27999d9f0e..363be87259fd 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' => 'master', ); \ No newline at end of file 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'); + }); + + } +}