wp_az_folders
LiveStores az folders data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_az_folders` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `title` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `parent_id` bigint NOT NULL DEFAULT '0',\n `color` varchar(8) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `order` int DEFAULT '0',\n `total_files` int DEFAULT '0',\n `created_by` bigint NOT NULL DEFAULT '0',\n `created_at` datetime NOT NULL,\n `updated_by` bigint NOT NULL DEFAULT '0',\n `updated_at` datetime NOT NULL,\n PRIMARY KEY (`id`),\n KEY `title` (`title`),\n KEY `type` (`type`),\n KEY `parent_id` (`parent_id`),\n KEY `created_by` (`created_by`),\n KEY `created_at` (`created_at`),\n KEY `updated_by` (`updated_by`),\n KEY `updated_at` (`updated_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled AzDrive – WordPress Media Folders & Organizer, 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_az_folders`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AzDrive – WordPress Media Folders & Organizer