wp_fictbase_license
StaticStores fictbase license data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| license_key | VARCHAR(64) | NO |
| license_status | VARCHAR(20) | NO |
| plan | VARCHAR(50) | NO |
| activated_at | DATETIME | YES |
| expires_at | DATETIME | YES |
| last_checked_at | DATETIME | YES |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_fictbase_license ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, license_key VARCHAR(64) NOT NULL DEFAULT '', license_status VARCHAR(20) NOT NULL DEFAULT 'invalid', plan VARCHAR(50) NOT NULL DEFAULT 'pro', activated_at DATETIME DEFAULT NULL, expires_at DATETIME DEFAULT NULL, last_checked_at DATETIME DEFAULT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY license_key (license_key) ) $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_license`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FICTBASE