From f6d5817bd81551aefbdbcefa654410c504d88d3d Mon Sep 17 00:00:00 2001 From: Vladimir Morozov Date: Fri, 6 Sep 2019 10:16:02 +0300 Subject: [PATCH] added $keyType = 'string' to Token model --- src/Token.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Token.php b/src/Token.php index 305b07fda..15193a427 100644 --- a/src/Token.php +++ b/src/Token.php @@ -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. *