wp_bdct_time_sessions
StaticStores session data for tracking user or visitor state.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | NO |
| post_id | INT | YES |
| post_type | VARCHAR(50) | YES |
| admin_page | VARCHAR(100) | YES |
| started_at | DATETIME | NO |
| ended_at | DATETIME | NO |
| duration_sec | INT | NO |
CREATE TABLE Statement
CREATE TABLE wp_bdct_time_sessions ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT UNSIGNED NOT NULL, post_id INT DEFAULT NULL, post_type VARCHAR(50) DEFAULT NULL, admin_page VARCHAR(100) DEFAULT NULL, started_at DATETIME NOT NULL, ended_at DATETIME NOT NULL, duration_sec INT NOT NULL DEFAULT 0, PRIMARY KEY (id), KEY user_id (user_id), KEY started_at (started_at) ) $charset;" );
Safe to delete?
If you have uninstalled Bitlence Dev Code Tracker, 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_bdct_time_sessions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bitlence Dev Code Tracker