wp_livelang_translations

Static

Stores livelang translations data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_livelang_translations` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `original_text` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `translated_text` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `slug` varchar(190) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `language` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `is_global` tinyint(1) NOT NULL DEFAULT '0',\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'active',\n  `created_at` datetime NOT NULL,\n  `updated_at` datetime NOT NULL,\n  PRIMARY KEY (`id`),\n  KEY `slug` (`slug`),\n  KEY `language` (`language`),\n  KEY `is_global` (`is_global`),\n  KEY `status` (`status`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled LiveLang – Smart Multilingual Visual Translator, 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_livelang_translations`;

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