wp_lfontsup_fonts
StaticStores lfontsup fonts data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) | NO |
| name | VARCHAR(255) | NO |
| amount | INT(11) | NO |
| font_data | varchar(255) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_lfontsup_fonts ( `id` INT(11) NOT NULL AUTO_INCREMENT, `name` VARCHAR(255) NOT NULL UNIQUE, `amount` INT(11) NOT NULL default '0', `font_data` varchar(255) default NULL, PRIMARY KEY (`id`) ) $charset_collate;"; dbDelta( $sql_fonts );
Safe to delete?
If you have uninstalled Local Fonts Uploader – Upload & Host Any Font Locally for GDPR, 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_lfontsup_fonts`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Local Fonts Uploader – Upload & Host Any Font Locally for GDPR