wp_famtree_relations

Static

Stores famtree relations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9)NO
typevarchar(55)YES
startdateYES
enddateYES
membersjsonNO
childrenjsonNO

CREATE TABLE Statement

CREATE TABLE wp_famtree_relations ( id mediumint(9) NOT NULL AUTO_INCREMENT, type varchar(55) NULL DEFAULT NULL, start date NULL DEFAULT NULL, end date NULL DEFAULT NULL, members json NOT NULL, children json NOT 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_relations`;

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

Other tables from FamTree