wp_epicwin_feed
StaticStores epicwin feed data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(5) UNSIGNED | NO |
| VARCHAR(100) | NO | |
| name | VARCHAR(30) | YES |
| opt_in | TINYINT(1) | YES |
CREATE TABLE Statement
CREATE TABLE epicwin_feed (id INT(5) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, email VARCHAR(100) NOT NULL, name VARCHAR(30), opt_in TINYINT(1), UNIQUE(email));
Safe to delete?
If you have uninstalled Epicwin Plugin, 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_epicwin_feed`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.