wp_daextinma_archive

Static

Stores daextinma archive data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
post_idbigint(20)NO
post_titletextNO
post_permalinktextNO
post_edit_linktextNO
post_typevarchar(20)NO
post_datedatetimeYES
manual_interlinksbigint(20)NO
iilbigint(20)NO
content_lengthbigint(20)NO
recommended_interlinksbigint(20)NO
optimizationtinyint(1)NO

CREATE TABLE Statement

CREATE TABLE wp_daextinma_archive ( id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY, post_id bigint(20) NOT NULL DEFAULT '0', post_title text NOT NULL DEFAULT '', post_permalink text NOT NULL DEFAULT '', post_edit_link text NOT NULL DEFAULT '', post_type varchar(20) NOT NULL DEFAULT '', post_date datetime DEFAULT NULL, manual_interlinks bigint(20) NOT NULL DEFAULT '0', iil bigint(20) NOT NULL DEFAULT '0', content_length bigint(20) NOT NULL DEFAULT '0', recommended_interlinks bigint(20) NOT NULL DEFAULT '0', optimization tinyint(1) NOT NULL DEFAULT '0' ) $charset_collate"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Interlinks Manager – Internal Links Optimizer, 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_daextinma_archive`;

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

Other tables from Interlinks Manager – Internal Links Optimizer