wp_taxonomy_slugs

Static

Stores taxonomy slugs data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
term_idbigint(20) unsignedNO
taxonomyvarchar(50)NO
language_codevarchar(10)NO
slugvarchar(200)NO
created_atdatetimeYES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_taxonomy_slugs ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, term_id bigint(20) unsigned NOT NULL, taxonomy varchar(50) NOT NULL, language_code varchar(10) NOT NULL, slug varchar(200) NOT NULL, created_at datetime DEFAULT CURRENT_TIMESTAMP, updated_at datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY term_lang (term_id, language_code), UNIQUE KEY taxonomy_lang_slug (taxonomy, language_code, slug), KEY idx_term_id (term_id), KEY idx_taxonomy (taxonomy), KEY idx_language_code (language_code) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql_taxonomy_slugs );

Safe to delete?

If you have uninstalled Voxfor Multilanguage, 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_taxonomy_slugs`;

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

Other tables from Voxfor Multilanguage