diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-09-04 12:38:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 12:38:16 +0200 |
commit | dc60a812842bb879b5b60393e69152716bc5e7fd (patch) | |
tree | ddc81e667406a1fc351663ba5621f2141e2e681c /apps | |
parent | c1b971ec639b9dbfee8753214acc4b0545318e28 (diff) | |
parent | 7ada6e5ab011f142dfb2bb4312dd3bd1128981da (diff) | |
download | nextcloud-server-dc60a812842bb879b5b60393e69152716bc5e7fd.tar.gz nextcloud-server-dc60a812842bb879b5b60393e69152716bc5e7fd.zip |
Merge pull request #22515 from nextcloud/backport/22472/stable19
[stable19] Fix writing BLOBs to postgres with recent contacts interaction
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contactsinteraction/lib/Db/RecentContact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contactsinteraction/lib/Db/RecentContact.php b/apps/contactsinteraction/lib/Db/RecentContact.php index 475de093419..e6c379d0aa1 100644 --- a/apps/contactsinteraction/lib/Db/RecentContact.php +++ b/apps/contactsinteraction/lib/Db/RecentContact.php @@ -66,7 +66,7 @@ class RecentContact extends Entity { $this->addType('uid', 'string'); $this->addType('email', 'string'); $this->addType('federatedCloudId', 'string'); - $this->addType('card', 'string'); + $this->addType('card', 'blob'); $this->addType('lastContact', 'int'); } } |