wp_aerppk_reactions

Static

Stores aerppk reactions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
post_idbigint(20)NO
user_idbigint(20)NO
emojivarchar(50)NO
created_atdatetimeYES

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.