wp_lfontsup_variants
StaticStores lfontsup variants data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) | NO |
| variant | VARCHAR(20) | NO |
| font_name | VARCHAR(255) | NO |
| file_url | varchar(255) | NO |
| file_id | int(11) | NO |
| assign_to | text | YES |
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