wp_bit_assist_analytics
LiveStores analytics or statistics data.
CREATE TABLE Statement
CREATE TABLE `wp_bit_assist_analytics` (\n `widget_id` bigint unsigned NOT NULL,\n `channel_id` bigint unsigned DEFAULT NULL,\n `is_clicked` tinyint NOT NULL DEFAULT '0',\n `created_at` timestamp NULL DEFAULT NULL,\n `updated_at` timestamp NULL DEFAULT NULL,\n KEY `widget_id` (`widget_id`),\n KEY `channel_id` (`channel_id`),\n CONSTRAINT `wp_bit_assist_analytics_ibfk_1` FOREIGN KEY (`widget_id`) REFERENCES `wp_bit_assist_widgets` (`id`) ON DELETE CASCADE,\n CONSTRAINT `wp_bit_assist_analytics_ibfk_2` FOREIGN KEY (`channel_id`) REFERENCES `wp_bit_assist_widget_channels` (`id`) ON DELETE CASCADE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Chat Widget: Floating Customer Support Button for 30+ Channels, Supporting SMS, Calls, and Chat – Bit Assist, 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_bit_assist_analytics`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Chat Widget: Floating Customer Support Button for 30+ Channels, Supporting SMS, Calls, and Chat – Bit Assist