wp_isoft_fmf_licenses
StaticStores isoft fmf licenses data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| slug | VARCHAR(255) | NO |
| description | TEXT | YES |
| full_text | LONGTEXT | YES |
| url | VARCHAR(2048) | YES |
| is_default | TINYINT(1) | NO |
| sort_order | INT | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
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