wp_cardflip_slideshow

Static

Stores cardflip slideshow data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑cf_idINT unsignedNO
cf_imageVARCHAR(1024)NO
cf_linkVARCHAR(1024)NO
cf_titleVARCHAR(1024)NO
cf_targetVARCHAR(10)NO
cf_orderint(11)NO
cf_groupVARCHAR(10)NO
cf_statusVARCHAR(3)NO
cf_updatedTIMESTAMPNO

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.