wp_taxonomy_slugs
StaticStores taxonomy slugs data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| term_id | bigint(20) unsigned | NO |
| taxonomy | varchar(50) | NO |
| language_code | varchar(10) | NO |
| slug | varchar(200) | NO |
| created_at | datetime | YES |
| updated_at | datetime | YES |
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