wp_fictbase_stories

Static

Stores fictbase stories data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
wp_author_idBIGINT UNSIGNEDNO
titleVARCHAR(255)NO
slugVARCHAR(255)NO
descriptionTEXTYES
cover_image_urlVARCHAR(500)YES
genreVARCHAR(100)YES
story_statusVARCHAR(20)NO
created_atDATETIMENO
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_fictbase_stories ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, wp_author_id BIGINT UNSIGNED NOT NULL, title VARCHAR(255) NOT NULL, slug VARCHAR(255) NOT NULL, description TEXT, cover_image_url VARCHAR(500), genre VARCHAR(100), story_status VARCHAR(20) NOT NULL DEFAULT 'draft', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY slug (slug) ) $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_stories`;

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

Other tables from FICTBASE