mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-11 01:24:27 +02:00
implement "moderate" flag on items
This commit is contained in:
parent
1f074cb44c
commit
a76a497d92
17 changed files with 41 additions and 36 deletions
|
@ -222,6 +222,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
`deny_gid` mediumtext NOT NULL,
|
||||
`private` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`pubmail` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`moderated` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`visible` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`starred` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`bookmark` tinyint(1) NOT NULL DEFAULT '0',
|
||||
|
@ -242,6 +243,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
KEY `created` (`created`),
|
||||
KEY `edited` (`edited`),
|
||||
KEY `received` (`received`),
|
||||
KEY `moderated` (`moderated`),
|
||||
KEY `visible` (`visible`),
|
||||
KEY `starred` (`starred`),
|
||||
KEY `bookmark` (`bookmark`),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue