wp_idnich_translation

Static

Stores idnich translation data created by this plugin.

Column Definitions

ColumnTypeNullable
post_idINT(11)NO
translation_category_idINT(11)NO
translation_category_nameVARCHAR(250)YES
translation_from_toVARCHAR(50)YES
translation_titleVARCHAR(1000)YES
translation_metaVARCHAR(1000)YES
translationLONGTEXTYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_idnich_translation ( post_id INT(11) NOT NULL, translation_category_id INT(11) NOT NULL DEFAULT 0, translation_category_name VARCHAR(250) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '', translation_from_to VARCHAR(50) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '', translation_title VARCHAR(1000) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '', translation_meta VARCHAR(1000) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '', translation LONGTEXT CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '', UNIQUE KEY `post_id` (`post_id`,`translation_from_to`) );

Safe to delete?

If you have uninstalled iDNich', 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_idnich_translation`;

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

Other tables from iDNich'