mirror of
https://github.com/friendica/friendica
synced 2025-04-26 09:10:15 +00:00
Updated field description
This commit is contained in:
parent
530ecb27cf
commit
dc9ea15bb1
2 changed files with 4 additions and 4 deletions
|
@ -568,7 +568,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
`extid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
`post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, bookmark, ...)',
|
||||
`global` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||
`private` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'distribution is restricted',
|
||||
`private` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '0=public, 1=private, 2=unlisted',
|
||||
`visible` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||
`moderated` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||
`deleted` boolean NOT NULL DEFAULT '0' COMMENT 'item has been deleted',
|
||||
|
@ -1178,7 +1178,7 @@ CREATE TABLE IF NOT EXISTS `thread` (
|
|||
`received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||
`changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||
`wall` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||
`private` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||
`private` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '0=public, 1=private, 2=unlisted',
|
||||
`pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||
`moderated` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||
`visible` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue