wp_jbusinessdirectory_subscriptions

Static

Stores jbusinessdirectory subscriptions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
start_datedateYES
end_datedateYES
trial_start_datedateYES
trial_end_datedateYES
trial_amountdecimal(12,2)YES
subscription_idvarchar(255)YES
processor_typevarchar(100)NO
amountdecimal(12,2)YES
payment_idintNO
company_idintNO
time_unitvarchar(10)NO
time_amountmediumintNO
statustinyintYES
createdtimestampYES

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