wp_hizzle_log

Static

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

Column Definitions

ColumnTypeNullable
🔑log_idbigint UNSIGNEDNO
timestampdatetimeNO
levelsmallint(4)NO
sourcevarchar(200)NO
messagelongtextNO
contextlongtextYES

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