wp_fireads_activities
StaticStores fireads activities data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| date_add | DATETIME | YES |
| total_entries | INT | YES |
| has_registered | BOOLEAN | YES |
CREATE TABLE Statement
CREATE TABLE wp_fireads_activities ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, date_add DATETIME, total_entries INT, has_registered BOOLEAN ) ");
Safe to delete?
If you have uninstalled Referencer, 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_fireads_activities`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.