wp_jetreader_user_preferences

Static

Stores jetreader user preferences data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
user_idBIGINT(20) UNSIGNEDNO
font_sizeVARCHAR(20)YES
line_heightVARCHAR(20)YES
font_familyVARCHAR(50)YES
theme_modeVARCHAR(20)YES
reading_modeVARCHAR(20)YES
sidebar_stateVARCHAR(20)YES
last_item_idBIGINT(20) UNSIGNEDYES
last_positionLONGTEXTYES
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_jetreader_user_preferences ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT(20) UNSIGNED NOT NULL, font_size VARCHAR(20) DEFAULT 'medium', line_height VARCHAR(20) DEFAULT 'medium', font_family VARCHAR(50) DEFAULT 'auto', theme_mode VARCHAR(20) DEFAULT 'auto', reading_mode VARCHAR(20) DEFAULT 'paginated', sidebar_state VARCHAR(20) DEFAULT 'open', last_item_id BIGINT(20) UNSIGNED DEFAULT NULL, last_position LONGTEXT DEFAULT NULL, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY user_id (user_id) ) ENGINE

Safe to delete?

If you have uninstalled JetReader – Book Library, EPUB & PDF Reader (Lite), 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_jetreader_user_preferences`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from JetReader – Book Library, EPUB & PDF Reader (Lite)