wp_channelsale_users
VerifiedStores channelsale users data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_channelsale_users` (\n `key_id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `user_id` bigint unsigned NOT NULL,\n `description` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n `permissions` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,\n `consumer_key` char(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,\n `consumer_secret` char(43) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,\n `nonces` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n `truncated_key` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,\n `last_access` datetime DEFAULT NULL,\n PRIMARY KEY (`key_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Safe to delete?
If you have uninstalled ChannelSale: WooCommerce Plugin to Sync Multi-Marketplace Product Listings, Orders, 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_channelsale_users`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.