wp_woocommerce_abbiamolog

Static

Stores woocommerce abbiamolog data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
order_idVARCHAR(255)NO
trackingVARCHAR(255)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_woocommerce_abbiamolog ( `id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, `order_id` VARCHAR(255) NOT NULL, `tracking` VARCHAR(255) DEFAULT NULL, PRIMARY KEY (id) ) DEFAULT CHARSET

Safe to delete?

If you have uninstalled Abbiamo Shipping Plugin 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_woocommerce_abbiamolog`;

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