working on long-term solution to relay issue
This commit is contained in:
parent
af6ab38100
commit
5dcc10a5d9
5 changed files with 27 additions and 16 deletions
|
|
@ -214,6 +214,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
`bookmark` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`unseen` tinyint(1) NOT NULL DEFAULT '1',
|
||||
`deleted` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`origin` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`last-child` tinyint(1) unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `guid` (`guid`),
|
||||
|
|
@ -231,6 +232,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
KEY `visible` (`visible`),
|
||||
KEY `starred` (`starred`),
|
||||
KEY `deleted` (`deleted`),
|
||||
KEY `origin` (`origin`),
|
||||
KEY `last-child` (`last-child`),
|
||||
KEY `unseen` (`unseen`),
|
||||
FULLTEXT KEY `title` (`title`),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue