wp_babe_category_deactivate_schedule
StaticStores babe category deactivate schedule data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| category_id | bigint(20) | YES |
| deactivate_date_from | datetime | YES |
| deactivate_date_to | datetime | YES |
CREATE TABLE Statement
CREATE TABLE wp_babe_category_deactivate_schedule ( id int NOT NULL AUTO_INCREMENT, category_id bigint(20) DEFAULT NULL, deactivate_date_from datetime DEFAULT NULL, deactivate_date_to datetime DEFAULT NULL, PRIMARY KEY (id), KEY category_id (category_id), KEY deactivate_date_from (deactivate_date_from), KEY deactivate_date_to (deactivate_date_to), KEY category_deactivate_date_from_to (category_id, deactivate_date_from, deactivate_date_to) ) $collate;" );
Safe to delete?
If you have uninstalled BA Book Everything, 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_babe_category_deactivate_schedule`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from BA Book Everything