wp_importpost_history

Static

Stores importpost history data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
origin_titlevarchar(255)NO
origin_urlvarchar(255)NO
id_postint(11)YES
code_postvarchar(2)YES
source_translatevarchar(2)YES
target_translatevarchar(2)YES
created_dateDATETIMEYES
updated_dateDATETIMEYES
statusint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_importpost_history ( id int(11) NOT NULL AUTO_INCREMENT, origin_title varchar(255) NOT NULL, origin_url varchar(255) NOT NULL, id_post int(11), code_post varchar(2), source_translate varchar(2), target_translate varchar(2), created_date DATETIME, updated_date DATETIME, status int(11) NOT NULL, PRIMARY KEY (id) ) ENGINE

Safe to delete?

If you have uninstalled Import Your Post, 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_importpost_history`;

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

Other tables from Import Your Post