wp_fictbase_chapters
StaticStores fictbase chapters data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| story_id | BIGINT UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| slug | VARCHAR(255) | NO |
| content | LONGTEXT | YES |
| recap | TEXT | YES |
| chapter_number | INT UNSIGNED | NO |
| chapter_status | VARCHAR(20) | NO |
| is_premium | TINYINT(1) | NO |
| scheduled_at | DATETIME | YES |
| published_at | DATETIME | YES |
| word_count | INT UNSIGNED | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
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