wp_famtree_metadata
StaticStores additional metadata (key-value pairs) for famtree metadata records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| refId | mediumint(9) | NO |
| mediaId | mediumint(9) | NO |
| refDate | date | YES |
| content | json | YES |
CREATE TABLE Statement
CREATE TABLE wp_famtree_metadata ( id mediumint(9) NOT NULL AUTO_INCREMENT, refId mediumint(9) NOT NULL, mediaId mediumint(9) NOT NULL, refDate date NULL DEFAULT NULL, content json NULL DEFAULT NULL, PRIMARY KEY (id) ) $charset_collate;"; dbDelta( $sql );
Safe to delete?
If you have uninstalled FamTree, 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_famtree_metadata`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FamTree