wp_feedback
StaticStores feedback data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | YES |
| comment | varchar(600) | YES |
| rating | int(11) | YES |
| date_added | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `feedback` ( `id` INT PRIMARY KEY AUTO_INCREMENT, `comment` varchar(600) DEFAULT NULL, `rating` int(11) DEFAULT NULL, `date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP );
Safe to delete?
If you have uninstalled Star Rating Feedback, 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_feedback`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.