wp_cky_banners
StaticStores cky banners data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑banner_id | bigint(20) | NO |
| name | varchar(190) | NO |
| slug | varchar(190) | NO |
| status | int(11) | NO |
| settings | longtext | NO |
| banner_default | int(11) | NO |
| contents | longtext | NO |
| date_created | datetime | NO |
| date_modified | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_cky_banners ( banner_id bigint(20) NOT NULL AUTO_INCREMENT, name varchar(190) NOT NULL DEFAULT '', slug varchar(190) NOT NULL DEFAULT '', status int(11) NOT NULL DEFAULT 0, settings longtext NOT NULL, banner_default int(11) NOT NULL DEFAULT 0, contents longtext NOT NULL, date_created datetime NOT NULL DEFAULT '0000-00-00 00:00:00', date_modified datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (banner_id) ) $collate; "; return $tables; } /** * Get a list of banners from localhost. * * @param array $args Array of arguments. * @return array */ public function get_item_from_db( $args = array() ) { global $wpdb; $items = array();Safe to delete?
If you have uninstalled CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice), 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_cky_banners`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice)