wp_epaka_parcel

Static

Stores epaka parcel data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
epaka_order_idint(11)NO
api_order_idint(11)YES
messageLONGTEXTYES
order_process_result_statusint(11)YES
epaka_statusint(11)YES
courier_statusint(11)YES
waybill_numberVARCHAR(255)YES
is_deletedTINYINT(1)NO
epaka_placed_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_epaka_parcel ( id int(11) NOT NULL AUTO_INCREMENT, epaka_order_id int(11) NOT NULL, api_order_id int(11) DEFAULT NULL, message LONGTEXT DEFAULT NULL, order_process_result_status int(11) DEFAULT NULL, epaka_status int(11) DEFAULT NULL, courier_status int(11) DEFAULT NULL, waybill_number VARCHAR(255) DEFAULT NULL, is_deleted TINYINT(1) NOT NULL, epaka_placed_at DATETIME NULL, PRIMARY KEY (id), KEY epaka_order_id (epaka_order_id), KEY api_order_id (api_order_id), CONSTRAINT wp_fk_epaka_parcel_order FOREIGN KEY (epaka_order_id) REFERENCES wp_epaka_order (id) ON DELETE CASCADE ) ENGINE

Safe to delete?

If you have uninstalled Epaka Shipping 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_epaka_parcel`;

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

Other tables from Epaka Shipping for WooCommerce