mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-12 01:54:26 +02:00
suppress duplicate FB posts (incoming after posted locally)
This commit is contained in:
parent
61f7b3d754
commit
d45ad7bb6b
7 changed files with 157 additions and 152 deletions
|
@ -166,6 +166,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
`gravity` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`parent` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`parent-uri` char(255) NOT NULL,
|
||||
`extid` char(255) NOT NULL,
|
||||
`thr-parent` char(255) NOT NULL,
|
||||
`created` datetime NOT NULL,
|
||||
`edited` datetime NOT NULL,
|
||||
|
@ -208,6 +209,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
KEY `wall` (`wall`),
|
||||
KEY `parent` (`parent`),
|
||||
KEY `parent-uri` (`parent-uri`),
|
||||
KEY `extid` (`extid`),
|
||||
KEY `created` (`created`),
|
||||
KEY `edited` (`edited`),
|
||||
KEY `visible` (`visible`),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue