wp_dango_coh_stats
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑cluster_id | BIGINT UNSIGNED | YES |
| total_orders | SMALLINT UNSIGNED | YES |
| revenue_orders | SMALLINT UNSIGNED | YES |
| total_spent | DECIMAL(15,2) | YES |
| processing | SMALLINT UNSIGNED | YES |
| on_hold | SMALLINT UNSIGNED | YES |
| cancelled | SMALLINT UNSIGNED | YES |
| failed | SMALLINT UNSIGNED | YES |
| refunded | SMALLINT UNSIGNED | YES |
| returned | SMALLINT UNSIGNED | YES |
| other_count | SMALLINT UNSIGNED | YES |
| updated_at | DATETIME | YES |
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