wp_afsa_processed_order
VerifiedStores order records and related transaction data.
CREATE TABLE Statement
CREATE TABLE `wp_afsa_processed_order` (\n `id_order` int NOT NULL,\n `id_shop` int NOT NULL,\n `date_add` datetime DEFAULT NULL,\n PRIMARY KEY (`id_order`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled AFS Analytics for WooCommerce, 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_afsa_processed_order`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.