wp_dynamic_social_cards

Static

Stores dynamic social cards data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
product_idbigint(20) unsignedNO
image_pathvarchar(255)NO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_dynamic_social_cards ( id bigint(20) unsigned NOT NULL auto_increment, product_id bigint(20) unsigned NOT NULL, image_path varchar(255) NOT NULL, created_at datetime NOT NULL, PRIMARY KEY (id), KEY product_id (product_id) ) $charset_collate;"; if (!function_exists('dbDelta')) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } dbDelta($sql);

Safe to delete?

If you have uninstalled Dynamic Social Cards, 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_dynamic_social_cards`;

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