From bbed72ff6b4d2b887d55b9990c42116193214b26 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Sun, 11 Nov 2018 12:43:24 -0500 Subject: [PATCH] Remove unneeded followers column from remoteusers To migrate: ALTER TABLE `remoteusers` DROP `followers`; --- schema.sql | 1 - 1 file changed, 1 deletion(-) diff --git a/schema.sql b/schema.sql index b7716d7..8cacf05 100644 --- a/schema.sql +++ b/schema.sql @@ -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;