wp_chrmrtns_safefonts

Verified

Stores chrmrtns safefonts data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_chrmrtns_safefonts` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `font_family` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `family_slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `font_style` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'normal',\n  `font_weight` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '400',\n  `is_variable` tinyint(1) NOT NULL DEFAULT '0',\n  `weight_min` int DEFAULT NULL,\n  `weight_max` int DEFAULT NULL,\n  `file_path` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `file_hash` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `file_size` bigint NOT NULL,\n  `mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  KEY `font_family` (`font_family`),\n  KEY `family_slug` (`family_slug`),\n  KEY `file_hash` (`file_hash`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled SafeFonts, 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_chrmrtns_safefonts`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.