wp__tbl_

Static

Stores tbl data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑packageNumberINTNO
orderIdINTNO
trackingNumberVARCHAR(64)NO
carrierCodeVARCHAR(64)NO
shipTimeDATETIMENO
estimatedArrivalTimeDATETIMENO
addressVARCHAR(255)NO
statusVARCHAR(32)NO
trackingEventsTEXTNO
trackingErrorVARCHAR(255)NO

CREATE TABLE Statement

CREATE TABLE _TBL_ ( `packageNumber` INT NOT NULL UNIQUE PRIMARY KEY, `orderId` INT NOT NULL, `trackingNumber` VARCHAR(64) NOT NULL DEFAULT '', `carrierCode` VARCHAR(64) NOT NULL DEFAULT '', `shipTime` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', `estimatedArrivalTime` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', `address` VARCHAR(255) NOT NULL DEFAULT '', `status` VARCHAR(32) NOT NULL DEFAULT '', `trackingEvents` TEXT NOT NULL DEFAULT '', `trackingError` VARCHAR(255) NOT NULL DEFAULT '')"; parent::__construct(SELF::TABLE, $create, TRUE);

Safe to delete?

If you have uninstalled Amazing Fulfillment Integration 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__tbl_`;

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