wp_jtl_connector_link_customer
StaticStores jtl connector link customer data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| endpoint_id | VARCHAR(255) | NO |
| host_id | INT(10) unsigned | NO |
| is_guest | BIT | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `jtl_connector_link_customer` ( `endpoint_id` VARCHAR(255) NOT NULL, `host_id` INT(10) unsigned NOT NULL, `is_guest` BIT, PRIMARY KEY (`endpoint_id`, `host_id`, `is_guest`), INDEX (`host_id`, `is_guest`), INDEX (`endpoint_id`, `is_guest`) ) ENGINE
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_jtl_connector_link_customer`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from JTL-Connector for WooCommerce