diff options
Diffstat (limited to 'apps/oauth2/lib/Db/AccessToken.php')
-rw-r--r-- | apps/oauth2/lib/Db/AccessToken.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/oauth2/lib/Db/AccessToken.php b/apps/oauth2/lib/Db/AccessToken.php index 1a31b4c2504..e0da141af3f 100644 --- a/apps/oauth2/lib/Db/AccessToken.php +++ b/apps/oauth2/lib/Db/AccessToken.php @@ -59,7 +59,7 @@ class AccessToken extends Entity { $this->addType('clientId', 'int'); $this->addType('hashedCode', 'string'); $this->addType('encryptedToken', 'string'); - $this->addType('code_created_at', 'int'); - $this->addType('token_count', 'int'); + $this->addType('codeCreatedAt', 'int'); + $this->addType('tokenCount', 'int'); } } |