wp_content_attacher
StaticStores content attacher data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) UNSIGNED | NO |
| title | text | NO |
| description | longtext | NO |
| position | int(1) UNSIGNED | NO |
| show_on_fulltext | int(1) UNSIGNED | NO |
| status | int(1) UNSIGNED | NO |
| posts | longtext | YES |
| pages | longtext | YES |
| cats | longtext | YES |
| authors | longtext | YES |
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.