wp_sync_errors
StaticStores sync errors data created by this plugin.
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS sync_errors (' . 'id INTEGER PRIMARY KEY AUTOINCREMENT,' . 'scope TEXT NOT NULL DEFAULT \'\',' // phpcs:ignore . 'controller TEXT NOT NULL,' . 'action TEXT NOT NULL,' . 'entity_id TEXT NOT NULL DEFAULT \'\',' // phpcs:ignore . 'message TEXT NOT NULL,' . 'created_at TEXT NOT NULL' . ')' );Safe to delete?
If you have uninstalled JTL-Connector 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_sync_errors`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from JTL-Connector for WooCommerce