Skip to content

Commit

Permalink
upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
hafezdivandari committed Aug 18, 2024
1 parent 691d494 commit 0170370
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ When authenticating users via bearer tokens, the `User` model's `token` method n

### Personal Access Client Table and Model Removal

PR: https://github.com/laravel/passport/pull/1749
PR: https://github.com/laravel/passport/pull/1749, https://github.com/laravel/passport/pull/1780

Passport's `oauth_personal_access_clients` table has been redundant and unnecessary for several release cycles. Therefore, this release of Passport no longer interacts with this table or its corresponding model. If you wish, you may create a migration that drops this table:

Schema::drop('oauth_personal_access_clients');

In addition, the `Laravel\Passport\PersonalAccessClient` model, `Passport::$personalAccessClientModel` property, `Passport::usePersonalAccessClientModel()`, `Passport::personalAccessClientModel()`, and `Passport::personalAccessClient()` methods have been removed.
In addition, the `passport.personal_access_client` config property, `Laravel\Passport\PersonalAccessClient` model, `Passport::$personalAccessClientModel` property, `Passport::usePersonalAccessClientModel()`, `Passport::personalAccessClientModel()`, and `Passport::personalAccessClient()` methods have been removed.

## Upgrading To 12.0 From 11.x

Expand Down

0 comments on commit 0170370

Please sign in to comment.