wp_dbnames
StaticStores dbnames data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| ip | VARCHAR(55) | NO |
| referral_url | VARCHAR(100) | YES |
| rel_path | VARCHAR(100) | YES |
CREATE TABLE Statement
CREATE TABLE dbnames ( ip VARCHAR(55) NOT NULL, referral_url VARCHAR(100) NULL, rel_path VARCHAR(100) NULL );
Safe to delete?
If you have uninstalled ProtectCopyBlogs [Protect your WordPress Blogfrom fraudulent copies], 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_dbnames`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.