wp__translationlang

Static

Stores translationlang data created by this plugin.

Column Definitions

ColumnTypeNullable
translation_idint(11)NO
langvarchar(255)NO
valuetextNO

CREATE TABLE Statement

CREATE TABLE `_TranslationLang` ( `translation_id` int(11) NOT NULL, `lang` varchar(255) NOT NULL, `value` text NOT NULL ) ENGINE

Safe to delete?

If you have uninstalled WP-Platform V1, 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__translationlang`;

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

Other tables from WP-Platform V1