wp_fictbase_bookmarks
StaticStores fictbase bookmarks data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| wp_user_id | BIGINT UNSIGNED | NO |
| story_id | BIGINT UNSIGNED | NO |
| chapter_id | BIGINT UNSIGNED | NO |
| scroll_position | TINYINT UNSIGNED | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
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