wp_importpost_history
StaticStores importpost history data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| origin_title | varchar(255) | NO |
| origin_url | varchar(255) | NO |
| id_post | int(11) | YES |
| code_post | varchar(2) | YES |
| source_translate | varchar(2) | YES |
| target_translate | varchar(2) | YES |
| created_date | DATETIME | YES |
| updated_date | DATETIME | YES |
| status | int(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