wp__translationlang
StaticStores translationlang data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| translation_id | int(11) | NO |
| lang | varchar(255) | NO |
| value | text | NO |
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