wp_jbusinessdirectory_conferences

Static

Stores jbusinessdirectory conferences data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
namevarchar(125)YES
aliasvarchar(125)YES
short_descriptionvarchar(255)YES
descriptiontextYES
placevarchar(255)YES
start_datedateYES
end_datedateYES
logovarchar(255)YES
registration_linkvarchar(255)YES
viewCountintNO
featuredtinyint(1)YES
publishedtinyint(1)NO
createdtimestampNO

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_conferences` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(125) DEFAULT NULL, `alias` varchar(125) DEFAULT NULL, `short_description` varchar(255) DEFAULT NULL, `description` text, `place` varchar(255) DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `logo` varchar(255) DEFAULT NULL, `registration_link` varchar(255) DEFAULT NULL, `viewCount` int NOT NULL DEFAULT '0', `featured` tinyint(1) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT '1', `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_featured` (`featured`), KEY `idx_published` (`published`), KEY `search` (`start_date`,`end_date`,`alias`) ) ENGINE

Safe to delete?

If you have uninstalled WP-BusinessDirectory – Business directory plugin for WordPress, 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_jbusinessdirectory_conferences`;

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

Other tables from WP-BusinessDirectory – Business directory plugin for WordPress