diff options
author | Julien Veyssier <julien-nc@posteo.net> | 2023-10-04 11:52:19 +0200 |
---|---|---|
committer | Julien Veyssier <julien-nc@posteo.net> | 2023-10-05 14:24:02 +0200 |
commit | 32f984c52084c3d04f579a41b704e8d30c81ed96 (patch) | |
tree | 0cecc340af142adfafd8326f2520db6e543aa8af /apps/oauth2/lib/Db | |
parent | c6da99474eca89cb991ca4c398c008088b324eec (diff) | |
download | nextcloud-server-32f984c52084c3d04f579a41b704e8d30c81ed96.tar.gz nextcloud-server-32f984c52084c3d04f579a41b704e8d30c81ed96.zip |
adjust oauth tests
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
Diffstat (limited to 'apps/oauth2/lib/Db')
-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'); } } |