Please note that this is only the structure of the database table. If there are any references to this, it will fail. I strongly recommend taking a full backup of database/files now before continuing with any upgrade operations.
If you are using a prefix for your database, please be sure to add that to the query below:
--
-- Table structure for table `core_follow_count_cache`
--
CREATE TABLE `core_follow_count_cache` (
`id` bigint(20) NOT NULL DEFAULT 0,
`class` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`count` int(11) NOT NULL DEFAULT 0,
`added` int(10) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
--
-- Indexes for table `core_follow_count_cache`
--
ALTER TABLE `core_follow_count_cache`
ADD UNIQUE KEY `id_class` (`id`,`class`(171)),
ADD KEY `added` (`added`);
COMMIT;