wp__tbl_
StaticStores tbl data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑packageNumber | INT | NO |
| orderId | INT | NO |
| trackingNumber | VARCHAR(64) | NO |
| carrierCode | VARCHAR(64) | NO |
| shipTime | DATETIME | NO |
| estimatedArrivalTime | DATETIME | NO |
| address | VARCHAR(255) | NO |
| status | VARCHAR(32) | NO |
| trackingEvents | TEXT | NO |
| trackingError | VARCHAR(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.