wp_inl_link_structures
StaticStores inl link structures data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| name | VARCHAR(100) | NO |
| type | VARCHAR(10) | NO |
| nodes | int | NO |
| create_date | TIMESTAMP | YES |
| mod_date | TIMESTAMP | YES |
| mod_by | VARCHAR(50) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `inl_link_structures` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL , `type` VARCHAR(10) NOT NULL , `nodes` int NOT NULL , `create_date` TIMESTAMP NULL , `mod_date` TIMESTAMP NULL , `mod_by` VARCHAR(50) NULL , PRIMARY KEY (`id`) ) ENGINE
Safe to delete?
If you have uninstalled No Sweat WP Internal Links Lite, 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_inl_link_structures`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from No Sweat WP Internal Links Lite