wp_cardflip_slideshow
StaticStores cardflip slideshow data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑cf_id | INT unsigned | NO |
| cf_image | VARCHAR(1024) | NO |
| cf_link | VARCHAR(1024) | NO |
| cf_title | VARCHAR(1024) | NO |
| cf_target | VARCHAR(10) | NO |
| cf_order | int(11) | NO |
| cf_group | VARCHAR(10) | NO |
| cf_status | VARCHAR(3) | NO |
| cf_updated | TIMESTAMP | NO |
CREATE TABLE Statement
CREATE TABLE wp_cardflip_slideshow ( cf_id INT unsigned NOT NULL AUTO_INCREMENT, cf_image VARCHAR(1024) NOT NULL default '', cf_link VARCHAR(1024) NOT NULL default '', cf_title VARCHAR(1024) NOT NULL default '', cf_target VARCHAR(10) NOT NULL default '_blank', cf_order int(11) NOT NULL default '0', cf_group VARCHAR(10) NOT NULL default 'Group1', cf_status VARCHAR(3) NOT NULL default 'Yes', cf_updated TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (cf_id) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Card flip image slideshow, 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_cardflip_slideshow`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.