wp_linkclicks
StaticStores linkclicks data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑link_id | INT | NO |
| link_url | TEXT | NO |
| link_clicks | INT | NO |
| link_date | DATETIME | NO |
| link_title | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE `wp_linkclicks` ( `link_id` INT NOT NULL AUTO_INCREMENT , `link_url` TEXT NOT NULL , `link_clicks` INT NOT NULL , `link_date` DATETIME NOT NULL , `link_title` TEXT NOT NULL , UNIQUE ( `link_id` ) );
Safe to delete?
If you have uninstalled Ozh' Click Counter, 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_linkclicks`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.