wp_dango_coh_stats

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑cluster_idBIGINT UNSIGNEDYES
total_ordersSMALLINT UNSIGNEDYES
revenue_ordersSMALLINT UNSIGNEDYES
total_spentDECIMAL(15,2)YES
processingSMALLINT UNSIGNEDYES
on_holdSMALLINT UNSIGNEDYES
cancelledSMALLINT UNSIGNEDYES
failedSMALLINT UNSIGNEDYES
refundedSMALLINT UNSIGNEDYES
returnedSMALLINT UNSIGNEDYES
other_countSMALLINT UNSIGNEDYES
updated_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE wp_dango_coh_stats (cluster_id BIGINT UNSIGNED PRIMARY KEY, total_orders SMALLINT UNSIGNED DEFAULT 0, revenue_orders SMALLINT UNSIGNED DEFAULT 0, total_spent DECIMAL(15,2) DEFAULT 0, processing SMALLINT UNSIGNED DEFAULT 0, on_hold SMALLINT UNSIGNED DEFAULT 0, cancelled SMALLINT UNSIGNED DEFAULT 0, failed SMALLINT UNSIGNED DEFAULT 0, refunded SMALLINT UNSIGNED DEFAULT 0, returned SMALLINT UNSIGNED DEFAULT 0, other_count SMALLINT UNSIGNED DEFAULT 0, updated_at DATETIME) $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_stats`;

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

Other tables from SafeShip Pakistan