wp_cards
StaticStores cards data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| addressbookid | INT(11) UNSIGNED | NO |
| carddata | MEDIUMBLOB | YES |
| uri | VARCHAR(200) | YES |
| lastmodified | INT(11) UNSIGNED | YES |
| etag | VARBINARY(32) | YES |
| size | INT(11) UNSIGNED | NO |
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