From 7d53ae9708be333b6ff44d099f79c6e94de10952 Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Fri, 9 Jan 2026 10:55:04 +0100 Subject: [PATCH] fix: do not declare the id column type Signed-off-by: Julien Veyssier --- lib/Db/GitlabAccount.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Db/GitlabAccount.php b/lib/Db/GitlabAccount.php index f70aefe..12dbe60 100644 --- a/lib/Db/GitlabAccount.php +++ b/lib/Db/GitlabAccount.php @@ -44,7 +44,6 @@ class GitlabAccount extends Entity implements JsonSerializable { private ICrypto $crypto; public function __construct() { - $this->addType('id', 'integer'); $this->addType('url', 'string'); $this->addType('token', 'string'); $this->addType('token_type', 'string');