wp_ep_pinterest_settings
StaticStores ep pinterest settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| option_name | varchar(255) | YES |
| option_value | varchar(255) | YES |
CREATE TABLE Statement
CREATE TABLE ep_pinterest_settings ( id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, option_name varchar(255), option_value varchar(255));
Safe to delete?
If you have uninstalled Elbuntu Pins, 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_ep_pinterest_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.