wp_feedback_category
StaticStores feedback category data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | YES |
| title | text | YES |
CREATE TABLE Statement
create table if not exists wp_feedback_category( `id` int primary key auto_increment, `title` text) CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ");
Safe to delete?
If you have uninstalled WiflyDemoFeedbackComposer, 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_category`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WiflyDemoFeedbackComposer