wp_integrate_dropbox_user_access
StaticStores integrate dropbox user access data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | YES |
| type | TEXT | NO |
| value | TEXT | NO |
| folders | LONGTEXT | YES |
| force | TINYINT(1) | YES |
| created_at | TIMESTAMP | NO |
| updated_at | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_integrate_dropbox_user_access( id INT AUTO_INCREMENT, `type` TEXT NOT NULL, `value` TEXT NOT NULL, `folders` LONGTEXT NULL, `force` TINYINT(1) DEFAULT 0, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP NULL, PRIMARY KEY (id)) ENGINE
Safe to delete?
If you have uninstalled File Manager for Dropbox, 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_integrate_dropbox_user_access`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.