wp_associator_event
StaticStores associator event data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(6) UNSIGNED | YES |
| type | VARCHAR(30) | NO |
| value | VARCHAR(255) | NO |
| created_at | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE wp_associator_event ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, type VARCHAR(30) NOT NULL, value VARCHAR(255) NOT NULL, created_at TIMESTAMP )");
Safe to delete?
If you have uninstalled Associator, 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_associator_event`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.