wp_costly_tables

Static

Stores costly tables data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
namevarchar(255)NO
slugvarchar(255)NO
settingslongtextYES
columnslongtextYES
created_atdatetimeYES
updated_atdatetimeYES

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.