mirror of
https://github.com/friendica/friendica
synced 2025-04-27 16:30:10 +00:00
db support for starred (favorited) items
This commit is contained in:
parent
24836f2966
commit
07dc1c3ca9
3 changed files with 10 additions and 3 deletions
|
@ -202,6 +202,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
`private` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`pubmail` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`visible` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`starred` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`unseen` tinyint(1) NOT NULL DEFAULT '1',
|
||||
`deleted` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`last-child` tinyint(1) unsigned NOT NULL DEFAULT '1',
|
||||
|
@ -218,6 +219,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
KEY `edited` (`edited`),
|
||||
KEY `received` (`received`),
|
||||
KEY `visible` (`visible`),
|
||||
KEY `starred` (`starred`),
|
||||
KEY `deleted` (`deleted`),
|
||||
KEY `last-child` (`last-child`),
|
||||
KEY `unseen` (`unseen`),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue