Skip to content

Commit

Permalink
Merge pull request #1078 from freezer278/add-key-type-to-token-model
Browse files Browse the repository at this point in the history
added $keyType = 'string' to Token model
  • Loading branch information
taylorotwell authored Sep 6, 2019
2 parents 8e78901 + f6d5817 commit 58b7183
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ class Token extends Model
*/
protected $table = 'oauth_access_tokens';

/**
* The "type" of the primary key ID.
*
* @var string
*/
protected $keyType = 'string';

/**
* Indicates if the IDs are auto-incrementing.
*
Expand Down

0 comments on commit 58b7183

Please sign in to comment.