wp_fictbase_chapters

Static

Stores fictbase chapters data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
story_idBIGINT UNSIGNEDNO
titleVARCHAR(255)NO
slugVARCHAR(255)NO
contentLONGTEXTYES
recapTEXTYES
chapter_numberINT UNSIGNEDNO
chapter_statusVARCHAR(20)NO
is_premiumTINYINT(1)NO
scheduled_atDATETIMEYES
published_atDATETIMEYES
word_countINT UNSIGNEDNO
created_atDATETIMENO
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_fictbase_chapters ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, story_id BIGINT UNSIGNED NOT NULL, title VARCHAR(255) NOT NULL, slug VARCHAR(255) NOT NULL, content LONGTEXT, recap TEXT DEFAULT NULL, chapter_number INT UNSIGNED NOT NULL DEFAULT 0, chapter_status VARCHAR(20) NOT NULL DEFAULT 'draft', is_premium TINYINT(1) NOT NULL DEFAULT 0, scheduled_at DATETIME DEFAULT NULL, published_at DATETIME DEFAULT NULL, word_count INT UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY story_id (story_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_chapters`;

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

Other tables from FICTBASE