wp_inl_link_struct_to_links
StaticStores inl link struct to links data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑links_id | INT | NO |
| source | INT | YES |
| target1 | INT | YES |
| target2 | INT | YES |
| anchor_text1 | VARCHAR(200) | YES |
| anchor_text2 | VARCHAR(200) | YES |
| link_struct_id | INT | NO |
| create_date | TIMESTAMP | YES |
| created_by | VARCHAR(50) | YES |
| mod_date | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `inl_link_struct_to_links` ( `links_id` INT NOT NULL AUTO_INCREMENT, `source` INT NULL, `target1` INT NULL, `target2` INT NULL, `anchor_text1` VARCHAR(200) NULL , `anchor_text2` VARCHAR(200) NULL , `link_struct_id` INT NOT NULL , `create_date` TIMESTAMP NULL , `created_by` VARCHAR(50) NULL , `mod_date` TIMESTAMP NULL , PRIMARY KEY (`links_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_struct_to_links`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from No Sweat WP Internal Links Lite