From 85632022ba13d18b9e442ae721900cc025ebf43f Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 11 May 2020 15:50:08 +0200 Subject: [PATCH 1/2] Update UPGRADE.md --- UPGRADE.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UPGRADE.md b/UPGRADE.md index 1eeb390f4..c57e6229e 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -17,6 +17,8 @@ Passport now has support for multiple guard user providers. Because of this chan Schema::table('oauth_clients', function (Blueprint $table) { $table->string('provider')->after('secret')->nullable(); }); + +If you hadn't published the migrations you'll need to manually add the column to your database. ### Client Credentials Secret Hashing From 94a123bdf156c9bc82ca7761d732aa704391db13 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 11 May 2020 08:51:33 -0500 Subject: [PATCH 2/2] Update UPGRADE.md --- UPGRADE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UPGRADE.md b/UPGRADE.md index c57e6229e..8c5c62bbb 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -17,8 +17,8 @@ Passport now has support for multiple guard user providers. Because of this chan Schema::table('oauth_clients', function (Blueprint $table) { $table->string('provider')->after('secret')->nullable(); }); - -If you hadn't published the migrations you'll need to manually add the column to your database. + +If you have not previously published the Passport migations, you should manually create a new migration to add this column to your databsae. ### Client Credentials Secret Hashing