wp_corksy_settings
StaticStores corksy settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| app_key | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE wp_corksy_settings ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, app_key varchar(255) NOT NULL, PRIMARY KEY (id) ) $collate; "; return $tables; } public static function get_tables() { global $wpdb; return array( "wp_corksy_settings", );Safe to delete?
If you have uninstalled Corksy, 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_corksy_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.