wp_dango_coh_orders

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
🔑order_idBIGINT UNSIGNEDYES
cluster_idBIGINT UNSIGNEDNO
statusVARCHAR(30)NO
totalDECIMAL(15,2)NO

CREATE TABLE Statement

CREATE TABLE wp_dango_coh_orders (order_id BIGINT UNSIGNED PRIMARY KEY, cluster_id BIGINT UNSIGNED NOT NULL, status VARCHAR(30) NOT NULL DEFAULT '', total DECIMAL(15,2) NOT NULL DEFAULT 0, KEY k_cluster (cluster_id)) $cc;");

Safe to delete?

If you have uninstalled SafeShip Pakistan, 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_dango_coh_orders`;

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

Other tables from SafeShip Pakistan