wp_content_attacher

Static

Stores content attacher data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) UNSIGNEDNO
titletextNO
descriptionlongtextNO
positionint(1) UNSIGNEDNO
show_on_fulltextint(1) UNSIGNEDNO
statusint(1) UNSIGNEDNO
postslongtextYES
pageslongtextYES
catslongtextYES
authorslongtextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `content_attacher` ( `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `position` int(1) UNSIGNED NOT NULL, `show_on_fulltext` int(1) UNSIGNED NOT NULL, `status` int(1) UNSIGNED NOT NULL, `posts` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pages` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `cats` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `authors` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`ID`), UNIQUE KEY `title` (`title`(100)) )");

Safe to delete?

If you have uninstalled Content Attacher, 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_content_attacher`;

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