wp_estatik_fb_sections

Static

Stores estatik fb sections data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9)NO
labelVARCHAR(255)NO
optionsTEXTYES
machine_nameVARCHAR(255)NO
entity_nameVARCHAR(255)NO
is_visibleINT(1)YES
is_visible_forVARCHAR(255)YES
orderINT(9)NO
labelVARCHAR(255)NO
frontend_form_nameVARCHAR(255)YES
machine_nameVARCHAR(255)NO
typeVARCHAR(255)NO
valuesTEXTYES
optionsTEXTYES
section_machine_nameVARCHAR(255)NO
tab_machine_nameVARCHAR(255)NO
entity_nameVARCHAR(255)NO
mandatoryINT(1)YES
address_componentVARCHAR(255)YES
search_supportINT(1)YES
mls_import_supportINT(1)YES
is_visibleINT(1)YES
is_visible_forVARCHAR(255)YES
orderINT(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