wp_bdct_time_sessions

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
user_idBIGINT UNSIGNEDNO
post_idINTYES
post_typeVARCHAR(50)YES
admin_pageVARCHAR(100)YES
started_atDATETIMENO
ended_atDATETIMENO
duration_secINTNO

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