wp_isoft_fmf_download_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
download_idBIGINT UNSIGNEDNO
file_idBIGINT UNSIGNEDNO
user_idBIGINT UNSIGNEDYES
user_loginVARCHAR(60)YES
ip_addressVARCHAR(45)YES
user_agentVARCHAR(500)YES
refererVARCHAR(2048)YES
license_id_at_downloadBIGINT UNSIGNEDYES
downloaded_atDATETIMENO
log_dateDATENO

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