mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 02:45:16 +02:00
email notify now redirected through mod_notify, weirdness in local deliver caused by community page changes
This commit is contained in:
parent
6edd6d8ae1
commit
b821399f00
6 changed files with 72 additions and 7 deletions
|
@ -741,6 +741,7 @@ CREATE TABLE IF NOT EXISTS `conv` (
|
|||
|
||||
CREATE TABLE IF NOT EXISTS `notify` (
|
||||
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`hash` CHAR( 64 ) NOT NULL,
|
||||
`type` INT( 11 ) NOT NULL ,
|
||||
`name` CHAR( 255 ) NOT NULL ,
|
||||
`url` CHAR( 255 ) NOT NULL ,
|
||||
|
@ -752,6 +753,7 @@ CREATE TABLE IF NOT EXISTS `notify` (
|
|||
`seen` TINYINT( 1 ) NOT NULL DEFAULT '0',
|
||||
`verb` CHAR( 255 ) NOT NULL,
|
||||
`otype` CHAR( 16 ) NOT NULL,
|
||||
INDEX ( `hash` ),
|
||||
INDEX ( `type` ),
|
||||
INDEX ( `uid` ),
|
||||
INDEX ( `seen` ),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue