wp_jbusinessdirectory_conferences
StaticStores jbusinessdirectory conferences data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| name | varchar(125) | YES |
| alias | varchar(125) | YES |
| short_description | varchar(255) | YES |
| description | text | YES |
| place | varchar(255) | YES |
| start_date | date | YES |
| end_date | date | YES |
| logo | varchar(255) | YES |
| registration_link | varchar(255) | YES |
| viewCount | int | NO |
| featured | tinyint(1) | YES |
| published | tinyint(1) | NO |
| created | timestamp | NO |
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