wp_clm

Verified

Stores clm data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_clm` (\n  `id_clm` int NOT NULL AUTO_INCREMENT,\n  `link_title` varchar(255) NOT NULL,\n  `link` varchar(255) NOT NULL,\n  `post_url` varchar(255) NOT NULL,\n  `post_title` varchar(255) NOT NULL,\n  `post_id` int NOT NULL,\n  `atag` varchar(255) DEFAULT NULL,\n  `ataghtml` varchar(255) DEFAULT NULL,\n  `post_type` varchar(255) DEFAULT NULL,\n  PRIMARY KEY (`id_clm`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3

Safe to delete?

If you have uninstalled Manage post content links-interlinks, 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_clm`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.