wp_jbusinessdirectory_subscriptions
StaticStores jbusinessdirectory subscriptions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| start_date | date | YES |
| end_date | date | YES |
| trial_start_date | date | YES |
| trial_end_date | date | YES |
| trial_amount | decimal(12,2) | YES |
| subscription_id | varchar(255) | YES |
| processor_type | varchar(100) | NO |
| amount | decimal(12,2) | YES |
| payment_id | int | NO |
| company_id | int | NO |
| time_unit | varchar(10) | NO |
| time_amount | mediumint | NO |
| status | tinyint | YES |
| created | timestamp | YES |
CREATE TABLE Statement
CREATE TABLE `wp_jbusinessdirectory_subscriptions` ( `id` int NOT NULL AUTO_INCREMENT, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `trial_start_date` date DEFAULT NULL, `trial_end_date` date DEFAULT NULL, `trial_amount` decimal(12,2) DEFAULT NULL, `subscription_id` varchar(255) DEFAULT NULL, `processor_type` varchar(100) NOT NULL, `amount` decimal(12,2) DEFAULT NULL, `payment_id` int NOT NULL, `company_id` int NOT NULL, `time_unit` varchar(10) NOT NULL DEFAULT 'D', `time_amount` mediumint NOT NULL DEFAULT '1', `status` tinyint DEFAULT '0', `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_company` (`company_id`), KEY `idx_subscription` (`subscription_id`), KEY `idx_payment` (`payment_id`), KEY `idx_status` (`status`) ) 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_subscriptions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-BusinessDirectory – Business directory plugin for WordPress