wp_fictbase_bookmarks

Static

Stores fictbase bookmarks data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
wp_user_idBIGINT UNSIGNEDNO
story_idBIGINT UNSIGNEDNO
chapter_idBIGINT UNSIGNEDNO
scroll_positionTINYINT UNSIGNEDNO
created_atDATETIMENO
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_fictbase_bookmarks ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, wp_user_id BIGINT UNSIGNED NOT NULL, story_id BIGINT UNSIGNED NOT NULL, chapter_id BIGINT UNSIGNED NOT NULL, scroll_position TINYINT UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY user_story (wp_user_id, story_id), KEY chapter_id (chapter_id) ) $charset;" );

Safe to delete?

If you have uninstalled FICTBASE, 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_fictbase_bookmarks`;

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

Other tables from FICTBASE