wp_bdct_daily_summary
StaticStores bdct daily summary data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | NO |
| summary_date | DATE | NO |
| total_sec | INT | NO |
CREATE TABLE Statement
CREATE TABLE wp_bdct_daily_summary ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT UNSIGNED NOT NULL, summary_date DATE NOT NULL, total_sec INT NOT NULL DEFAULT 0, PRIMARY KEY (id), UNIQUE KEY user_date (user_id, summary_date) ) $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_daily_summary`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bitlence Dev Code Tracker