wp_famtree_persons
StaticStores famtree persons data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| root | boolean | YES |
| firstName | varchar(55) | NO |
| surNames | varchar(55) | NO |
| lastName | varchar(55) | NO |
| birthName | varchar(55) | NO |
| birthday | date | YES |
| deathday | date | YES |
| portraitId | mediumint(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