diff options
author | friendica <info@friendica.com> | 2014-04-06 02:57:33 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-06 02:57:33 -0700 |
commit | ad60e2c566930409d853517ca9392f169fc8e747 (patch) | |
tree | 120630a3c0dbf43de66ab5f46714a7f75072e2c5 /install/database.sql | |
parent | a2b949f3393206ffe2e1195d6abaa883f299b471 (diff) | |
download | volse-hubzilla-ad60e2c566930409d853517ca9392f169fc8e747.tar.gz volse-hubzilla-ad60e2c566930409d853517ca9392f169fc8e747.tar.bz2 volse-hubzilla-ad60e2c566930409d853517ca9392f169fc8e747.zip |
use parent_mid in the parent query for enotify instead of of the parent id. This should fix the issue with encrypted content in the notification messages (for locally posted replies). The fix was a bit harder than anticipated because we store the parent id as an int in the notify table so this had to be modified to char storage as well.
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql index f9562ae09..a5094b8e1 100644 --- a/install/database.sql +++ b/install/database.sql @@ -622,7 +622,7 @@ CREATE TABLE IF NOT EXISTS `notify` ( `aid` int(11) NOT NULL, `uid` int(11) NOT NULL, `link` char(255) NOT NULL, - `parent` int(11) NOT NULL, + `parent` char(255) NOT NULL DEFAULT '', `seen` tinyint(1) NOT NULL DEFAULT '0', `type` int(11) NOT NULL, `verb` char(255) NOT NULL, |