wp_famtree_relations
StaticStores famtree relations data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| type | varchar(55) | YES |
| start | date | YES |
| end | date | YES |
| members | json | NO |
| children | json | NO |
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