wp_hizzle_download_files

Live

Stores hizzle download files data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_hizzle_download_files` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `file_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `file_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `git_url` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `category` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `download_count` bigint unsigned NOT NULL DEFAULT '0',\n  `menu_order` bigint unsigned NOT NULL DEFAULT '0',\n  `metadata` text COLLATE utf8mb4_unicode_520_ci,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `file_name` (`file_name`(191)),\n  UNIQUE KEY `git_url` (`git_url`(191))\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

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_download_files`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Simple Download Manager – Hizzle Downloads