You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Passport's `oauth_clients` table has been changed in several ways:
105
+
106
+
- The `user_id` column has been replaced by the `owner_type` and `owner_id` columns.
107
+
- The `redirect` column has been replaced by the `redirect_uris` column. The new column needs to store an array of URLs.
108
+
- The `personal_access_client` and `password_client` columns have been replaced by the `grant_types` column. The new column needs to store an array of OAuth 2 grant types.
109
+
110
+
Passport's `Laravel\Passport\Database\Factories\ClientFactory` factory class has been updated to reflect the changes to this table. If you do not want to make these changes to your application's `oauth_clients` table, you may use the [old Client factory class](https://github.com/laravel/passport/blob/12.x/database/factories/ClientFactory.php).
0 commit comments