add a guid to directory update table to avoid recursion

This commit is contained in:
friendica
2013-08-31 04:30:01 -07:00
parent 625dcb911a
commit 00622779f3
3 changed files with 13 additions and 2 deletions

View File

@@ -882,8 +882,10 @@ CREATE TABLE IF NOT EXISTS `tokens` (
CREATE TABLE IF NOT EXISTS `updates` (
`ud_hash` char(128) NOT NULL,
`ud_guid` char(255) NOT NULL DEFAULT '',
`ud_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`ud_hash`),
KEY `ud_guid` (`ud_guid`),
KEY `ud_date` (`ud_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;