wp_eshipper_plugin_health

Static

Stores eshipper plugin health data created by this plugin.

Column Definitions

ColumnTypeNullable
authtinyint(1)YES
access_keystinyint(1)YES
store_addresstinyint(1)YES
webhookstinyint(1)YES
carrier_servicestinyint(1)YES
created_timetimestampYES
updated_timetimestampYES

CREATE TABLE Statement

CREATE TABLE `wp_eshipper_plugin_health` ( `auth` tinyint(1) DEFAULT '0', `access_keys` tinyint(1) DEFAULT '0', `store_address` tinyint(1) DEFAULT '0', `webhooks` tinyint(1) DEFAULT '0', `carrier_services` tinyint(1) DEFAULT '0', `created_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP );

Safe to delete?

If you have uninstalled eShipper Commerce, 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_eshipper_plugin_health`;

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

Other tables from eShipper Commerce