diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-08-28 14:30:33 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-08-28 14:30:33 +0200 |
commit | 3bc54bfd062d9396f438a295ebc1dd16cbed0e5e (patch) | |
tree | 5d15964fe4a79a4ccbd5a53472a3feba74267bf4 /apps/contactsinteraction | |
parent | 286bf2b84ffda4c5878026b28aa2bdd0ef75b54a (diff) | |
download | nextcloud-server-3bc54bfd062d9396f438a295ebc1dd16cbed0e5e.tar.gz nextcloud-server-3bc54bfd062d9396f438a295ebc1dd16cbed0e5e.zip |
Fix writing BLOBs to postgres with recent contacts interaction
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/contactsinteraction')
-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'); } } |