wp_bsp_robo_logs
VerifiedA logging table that records activity, events, or audit history.
CREATE TABLE Statement
CREATE TABLE `wp_bsp_robo_logs` (\n `id` int NOT NULL AUTO_INCREMENT,\n `shop_url` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `order_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `order_id` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `order_number` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `order_phone` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `order_total` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `order_gateway` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_provider` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_datetime` datetime DEFAULT NULL,\n `ivr_id` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_api` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_response` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_api_return` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_retry` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_call` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_status` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ivr_logs` text COLLATE utf8mb4_unicode_520_ci,\n `ivr_call_que` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n PRIMARY KEY (`id`),\n KEY `shop_url` (`shop_url`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Robo IVR Call Pakistan, 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_bsp_robo_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Robo IVR Call Pakistan