wp_unipixel_conversion_groups
StaticStores unipixel conversion groups data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| conceptual_event | VARCHAR(255) | NO |
| description | TEXT | YES |
| event_trigger | VARCHAR(255) | NO |
| trigger_target | VARCHAR(255) | NO |
| created_at | TIMESTAMP | YES |
| updated_at | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE wp_unipixel_conversion_groups ( id INT NOT NULL AUTO_INCREMENT, conceptual_event VARCHAR(255) NOT NULL, description TEXT, event_trigger VARCHAR(255) NOT NULL, trigger_target VARCHAR(255) NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id) );
Safe to delete?
If you have uninstalled UniPixel: Meta, Pinterest, TikTok, Google & Microsoft Server-Side Tracking 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_unipixel_conversion_groups`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from UniPixel: Meta, Pinterest, TikTok, Google & Microsoft Server-Side Tracking for WooCommerce