wp_integrate_dropbox_user_access

Static

Stores integrate dropbox user access data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTYES
typeTEXTNO
valueTEXTNO
foldersLONGTEXTYES
forceTINYINT(1)YES
created_atTIMESTAMPNO
updated_atTIMESTAMPYES

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.