wp_fictbase_license

Static

Stores fictbase license data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
license_keyVARCHAR(64)NO
license_statusVARCHAR(20)NO
planVARCHAR(50)NO
activated_atDATETIMEYES
expires_atDATETIMEYES
last_checked_atDATETIMEYES
created_atDATETIMENO

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