wp_internal_link_info

Static

Stores internal link info data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
wordvarchar(255)NO
linkvarchar(255)NO
densityint(10)NO
skip_wordsint(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.