wp_cards

Static

Stores cards data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11) UNSIGNEDNO
addressbookidINT(11) UNSIGNEDNO
carddataMEDIUMBLOBYES
uriVARCHAR(200)YES
lastmodifiedINT(11) UNSIGNEDYES
etagVARBINARY(32)YES
sizeINT(11) UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE cards ( id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, addressbookid INT(11) UNSIGNED NOT NULL, carddata MEDIUMBLOB, uri VARCHAR(200), lastmodified INT(11) UNSIGNED, etag VARBINARY(32), size INT(11) UNSIGNED NOT NULL ) ENGINE

Safe to delete?

If you have uninstalled Backup, Restore and Migrate your sites with XCloner, 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_cards`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Backup, Restore and Migrate your sites with XCloner