diff options
author | Friendika <info@friendika.com> | 2011-04-27 04:24:00 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-27 04:24:00 -0700 |
commit | d45ad7bb6b21702260320e3973b3feab11e7124a (patch) | |
tree | 08ca1916e09ce382ddf8006a1aa88b53f1850821 /update.php | |
parent | 61f7b3d754188c6cce75cee4c6c110e8e4e60de0 (diff) | |
download | volse-hubzilla-d45ad7bb6b21702260320e3973b3feab11e7124a.tar.gz volse-hubzilla-d45ad7bb6b21702260320e3973b3feab11e7124a.tar.bz2 volse-hubzilla-d45ad7bb6b21702260320e3973b3feab11e7124a.zip |
suppress duplicate FB posts (incoming after posted locally)
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/update.php b/update.php index a8140fe91..541d59946 100644 --- a/update.php +++ b/update.php @@ -476,3 +476,7 @@ function update_1052() { } +function update_1053() { + q("ALTER TABLE `item` ADD `extid` CHAR( 255 ) NOT NULL AFTER `parent-uri` , ADD INDEX ( `extid` ) "); +} + |