wp_internal_link_info
StaticStores internal link info data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| word | varchar(255) | NO |
| link | varchar(255) | NO |
| density | int(10) | NO |
| skip_words | int(10) | NO |
CREATE TABLE Statement
CREATE TABLE `internal_link_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `word` varchar(255) NOT NULL, `link` varchar(255) NOT NULL, `density` int(10) NOT NULL, `skip_words` int(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE
Safe to delete?
If you have uninstalled Internal Link Building, 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_internal_link_info`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.