wp_isoft_fmf_download_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| download_id | BIGINT UNSIGNED | NO |
| file_id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | YES |
| user_login | VARCHAR(60) | YES |
| ip_address | VARCHAR(45) | YES |
| user_agent | VARCHAR(500) | YES |
| referer | VARCHAR(2048) | YES |
| license_id_at_download | BIGINT UNSIGNED | YES |
| downloaded_at | DATETIME | NO |
| log_date | DATE | NO |
CREATE TABLE Statement
CREATE TABLE wp_isoft_fmf_download_log ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, download_id BIGINT UNSIGNED NOT NULL, file_id BIGINT UNSIGNED NOT NULL, user_id BIGINT UNSIGNED DEFAULT NULL, user_login VARCHAR(60) DEFAULT NULL, ip_address VARCHAR(45) DEFAULT NULL, user_agent VARCHAR(500) DEFAULT NULL, referer VARCHAR(2048) DEFAULT NULL, license_id_at_download BIGINT UNSIGNED DEFAULT NULL, downloaded_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, log_date DATE NOT NULL DEFAULT '0000-00-00', PRIMARY KEY (id), INDEX idx_download_id (download_id), INDEX idx_file_id (file_id), INDEX idx_user_id (user_id), INDEX idx_license_at_download (license_id_at_download), INDEX idx_downloaded_at (downloaded_at), INDEX idx_log_date (log_date) ) $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_download_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from I-Soft File Manager: Foundation