wp_lfontsup_fonts

Static

Stores lfontsup fonts data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11)NO
nameVARCHAR(255)NO
amountINT(11)NO
font_datavarchar(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