wp_jtl_connector_link_image

Static

Stores jtl connector link image data created by this plugin.

Column Definitions

ColumnTypeNullable
endpoint_idVARCHAR(255)NO
host_idINT(10)NO
typeINT unsignedNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `jtl_connector_link_image` ( `endpoint_id` VARCHAR(255) NOT NULL, `host_id` INT(10) NOT NULL, `type` INT unsigned NOT NULL, PRIMARY KEY (`endpoint_id`, `host_id`, `type`), INDEX (`host_id`, `type`), INDEX (`endpoint_id`, `type`) ) 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_image`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from JTL-Connector for WooCommerce