wp_hizzle_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑log_id | bigint UNSIGNED | NO |
| timestamp | datetime | NO |
| level | smallint(4) | NO |
| source | varchar(200) | NO |
| message | longtext | NO |
| context | longtext | YES |
CREATE TABLE Statement
CREATE TABLE wp_hizzle_log ( log_id bigint UNSIGNED NOT NULL AUTO_INCREMENT, timestamp datetime NOT NULL, level smallint(4) NOT NULL, source varchar(200) NOT NULL, message longtext NOT NULL, context longtext NULL, PRIMARY KEY (log_id), KEY level (level) ) $collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );
Safe to delete?
If you have uninstalled Simple Download Manager – Hizzle Downloads, 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_hizzle_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Simple Download Manager – Hizzle Downloads