Remove unneeded followers column from remoteusers

To migrate:

  ALTER TABLE `remoteusers` DROP `followers`;
This commit is contained in:
Matt Baer 2018-11-11 12:43:24 -05:00
parent a0ac7bbbcd
commit bbed72ff6b
1 changed files with 0 additions and 1 deletions

View File

@ -156,7 +156,6 @@ CREATE TABLE IF NOT EXISTS `remoteusers` (
`actor_id` varchar(255) NOT NULL,
`inbox` varchar(255) NOT NULL,
`shared_inbox` varchar(255) NOT NULL,
`followers` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `collection_id` (`actor_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;