wp_codeart_units_converter_units
StaticStores codeart units converter units data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| type | varchar(255) | YES |
| unit | varchar(255) | YES |
| name | varchar(255) | YES |
| code_name | varchar(255) | YES |
| abbreviation | varchar(255) | YES |
| updated | TIMESTAMP | NO |
| created | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_codeart_units_converter_units( id bigint(20) NOT NULL AUTO_INCREMENT, `type` varchar(255) DEFAULT '' , `unit` varchar(255) DEFAULT '' , `name` varchar(255) DEFAULT '' , `code_name` varchar(255) DEFAULT '' , `abbreviation` varchar(255) DEFAULT '' , `updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created` timestamp NOT NULL default CURRENT_TIMESTAMP, UNIQUE KEY id (id) ) ENGINE
Safe to delete?
If you have uninstalled CodeArt Units Converter, 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_codeart_units_converter_units`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CodeArt Units Converter