wp_famtree_persons

Static

Stores famtree persons data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9)NO
rootbooleanYES
firstNamevarchar(55)NO
surNamesvarchar(55)NO
lastNamevarchar(55)NO
birthNamevarchar(55)NO
birthdaydateYES
deathdaydateYES
portraitIdmediumint(9)YES

CREATE TABLE Statement

CREATE TABLE wp_famtree_persons ( id mediumint(9) NOT NULL AUTO_INCREMENT, root boolean DEFAULT FALSE, firstName varchar(55) DEFAULT '' NOT NULL, surNames varchar(55) DEFAULT '' NOT NULL, lastName varchar(55) DEFAULT '' NOT NULL, birthName varchar(55) DEFAULT '' NOT NULL, birthday date NULL DEFAULT NULL, deathday date NULL DEFAULT NULL, portraitId mediumint(9) DEFAULT NULL, PRIMARY KEY (id) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; 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_persons`;

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

Other tables from FamTree