wp_famtree_metadata

Static

Stores additional metadata (key-value pairs) for famtree metadata records.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9)NO
refIdmediumint(9)NO
mediaIdmediumint(9)NO
refDatedateYES
contentjsonYES

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