wp_baggage_excel
StaticStores baggage excel data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑Id | int(11) | NO |
| SKU | varchar(200) | NO |
| Weight | varchar(200) | NO |
| Height | varchar(200) | NO |
| Width | varchar(200) | NO |
| Length | varchar(200) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `baggage_excel` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `SKU` varchar(200) NOT NULL, `Weight` varchar(200) NOT NULL, `Height` varchar(200) NOT NULL, `Width` varchar(200) NOT NULL, `Length` varchar(200) NOT NULL, PRIMARY KEY (`Id`) );
Safe to delete?
If you have uninstalled Baggage Freight Shipping Australia, 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_baggage_excel`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Baggage Freight Shipping Australia