wp_fictbase_chapter_views

Static

Stores fictbase chapter views data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
chapter_idBIGINT UNSIGNEDNO
ip_hashVARCHAR(64)YES
wp_user_idBIGINT UNSIGNEDYES
viewed_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_fictbase_chapter_views ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, chapter_id BIGINT UNSIGNED NOT NULL, ip_hash VARCHAR(64) DEFAULT NULL, wp_user_id BIGINT UNSIGNED DEFAULT NULL, viewed_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (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_chapter_views`;

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

Other tables from FICTBASE