update post privacy enum to match mastodon's naming scheme

This commit is contained in:
Lynne Megido 2019-09-09 19:51:45 +10:00
parent 7f638e321e
commit 33cbbd1de9

View File

@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `bots` (
`length` SMALLINT UNSIGNED DEFAULT 500,
`fake_mentions` ENUM('always', 'middle', 'never') DEFAULT 'middle',
`fake_mentions_full` BOOLEAN DEFAULT 0,
`post_privacy` ENUM('public', 'unlisted', 'followers_only') DEFAULT 'unlisted',
`post_privacy` ENUM('public', 'unlisted', 'private') DEFAULT 'unlisted',
`learn_from_cw` BOOLEAN DEFAULT 0,
`last_post` DATETIME DEFAULT 0,
`icon` VARCHAR(512),