wp_translations

Static

Stores translations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDINTEGERNO
program_nameVARCHAR(150)YES
stringTEXTNO
langTEXTNO
valueTEXTNO
timeINTYES
suggestionTEXTYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS translations ( ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, program_name VARCHAR(150), string TEXT NOT NULL, lang TEXT NOT NULL, value TEXT NOT NULL, time INT, suggestion TEXT );

Safe to delete?

If you have uninstalled WP phpMyAdmin, 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_translations`;

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

Other tables from WP phpMyAdmin