wp_antispam_token

Static

Stores access tokens for authentication or API access.

Column Definitions

ColumnTypeNullable
codechar(64)NO
createddatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_antispam_token ( `code` char(64) NOT NULL, `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`code`) ) {$wpdb->get_charset_collate()} ");

Safe to delete?

If you have uninstalled Concise Antispam, 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_antispam_token`;

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