wp_costly_tables
StaticStores costly tables data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| name | varchar(255) | NO |
| slug | varchar(255) | NO |
| settings | longtext | YES |
| columns | longtext | YES |
| created_at | datetime | YES |
| updated_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE wp_costly_tables ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, slug varchar(255) NOT NULL, settings longtext, columns longtext, created_at datetime DEFAULT CURRENT_TIMESTAMP, updated_at datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY slug (slug) );
Safe to delete?
If you have uninstalled Costly | Pricing Tables, 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_costly_tables`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.