wp_isoft_fmf_licenses

Static

Stores isoft fmf licenses data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
titleVARCHAR(255)NO
slugVARCHAR(255)NO
descriptionTEXTYES
full_textLONGTEXTYES
urlVARCHAR(2048)YES
is_defaultTINYINT(1)NO
sort_orderINTNO
created_atDATETIMENO
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_isoft_fmf_licenses ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL, slug VARCHAR(255) NOT NULL, description TEXT, full_text LONGTEXT, url VARCHAR(2048) DEFAULT NULL, is_default TINYINT(1) NOT NULL DEFAULT 0, sort_order INT NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE INDEX idx_slug (slug) ) $charset_collate;" );

Safe to delete?

If you have uninstalled I-Soft File Manager: Foundation, 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_isoft_fmf_licenses`;

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

Other tables from I-Soft File Manager: Foundation