wp_lfontsup_variants

Static

Stores lfontsup variants data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11)NO
variantVARCHAR(20)NO
font_nameVARCHAR(255)NO
file_urlvarchar(255)NO
file_idint(11)NO
assign_totextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_lfontsup_variants ( `id` INT(11) NOT NULL AUTO_INCREMENT, `variant` VARCHAR(20) NOT NULL, `font_name` VARCHAR(255) NOT NULL, `file_url` varchar(255) NOT NULL default '', `file_id` int(11) NOT NULL default '0', `assign_to` text NULL, PRIMARY KEY (`id`) ) $charset_collate;"; dbDelta( $sql_variants );

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_variants`;

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