wp_aerppk_reactions
StaticStores aerppk reactions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| post_id | bigint(20) | NO |
| user_id | bigint(20) | NO |
| emoji | varchar(50) | NO |
| created_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_aerppk_reactions ( id bigint(20) NOT NULL AUTO_INCREMENT, post_id bigint(20) NOT NULL, user_id bigint(20) NOT NULL, emoji varchar(50) NOT NULL, created_at datetime DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY user_post (user_id, post_id), KEY post_id (post_id), KEY user_id (user_id) ) $charset_collate;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
Safe to delete?
If you have uninstalled Awesome Emoji Reactions, 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_aerppk_reactions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.