wp_font_color
VerifiedStores font color data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_font_color` (\n `id` mediumint NOT NULL AUTO_INCREMENT,\n `h1_size` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `h2_size` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `h3_size` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `h4_size` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `p_size` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `label_size` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `link_size` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `h1_color` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `h2_color` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `h3_color` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `h4_color` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `p_color` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `label_color` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `link_color` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `link_hovercolor` varchar(55) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Change font size and color, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_font_color`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.