wp_fictbase_stories
StaticStores fictbase stories data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| wp_author_id | BIGINT UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| slug | VARCHAR(255) | NO |
| description | TEXT | YES |
| cover_image_url | VARCHAR(500) | YES |
| genre | VARCHAR(100) | YES |
| story_status | VARCHAR(20) | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
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