wp_fictbase_subscribers
StaticStores fictbase subscribers data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| story_id | BIGINT UNSIGNED | NO |
| VARCHAR(255) | NO | |
| token | VARCHAR(64) | NO |
| confirmed | TINYINT(1) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_fictbase_subscribers ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, story_id BIGINT UNSIGNED NOT NULL, email VARCHAR(255) NOT NULL, token VARCHAR(64) NOT NULL DEFAULT '', confirmed TINYINT(1) NOT NULL DEFAULT 1, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY story_email (story_id, email), 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_subscribers`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FICTBASE