wp_estatik_fb_sections
StaticStores estatik fb sections data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| label | VARCHAR(255) | NO |
| options | TEXT | YES |
| machine_name | VARCHAR(255) | NO |
| entity_name | VARCHAR(255) | NO |
| is_visible | INT(1) | YES |
| is_visible_for | VARCHAR(255) | YES |
| order | INT(9) | NO |
| label | VARCHAR(255) | NO |
| frontend_form_name | VARCHAR(255) | YES |
| machine_name | VARCHAR(255) | NO |
| type | VARCHAR(255) | NO |
| values | TEXT | YES |
| options | TEXT | YES |
| section_machine_name | VARCHAR(255) | NO |
| tab_machine_name | VARCHAR(255) | NO |
| entity_name | VARCHAR(255) | NO |
| mandatory | INT(1) | YES |
| address_component | VARCHAR(255) | YES |
| search_support | INT(1) | YES |
| mls_import_support | INT(1) | YES |
| is_visible | INT(1) | YES |
| is_visible_for | VARCHAR(255) | YES |
| order | INT(9) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_estatik_fb_sections ( id mediumint(9) NOT NULL AUTO_INCREMENT, `label` VARCHAR(255) NOT NULL, `options` TEXT, machine_name VARCHAR(255) NOT NULL, entity_name VARCHAR(255) NOT NULL, is_visible INT(1) DEFAULT 1, `is_visible_for` VARCHAR(255) DEFAULT '$visible_for', `order` INT(9) NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; $sql2 = "CREATE TABLE IF NOT EXISTS wp_estatik_fb_fields ( id mediumint(9) NOT NULL AUTO_INCREMENT, `label` VARCHAR(255) NOT NULL, frontend_form_name VARCHAR(255), machine_name VARCHAR(255) NOT NULL, `type` VARCHAR(255) NOT NULL, `values` TEXT, `options` TEXT, section_machine_name VARCHAR(255) NOT NULL, tab_machine_name VARCHAR(255) NOT NULL, entity_name VARCHAR(255) NOT NULL DEFAULT 'property', mandatory INT(1) DEFAULT 0, address_component VARCHAR(255), search_support INT(1) DEFAULT 0, mls_import_support INT(1) DEFAULT 0, is_visible INT(1) DEFAULT 0, `is_visible_for` VARCHAR(255) DEFAULT '$visible_for', `order` INT(9) NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; $wpdb->query( $sql );
Safe to delete?
If you have uninstalled Estatik Real Estate Plugin, 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_estatik_fb_sections`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Estatik Real Estate Plugin