wp_actor

Static

Stores actor data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑actor_idsmallint(5) unsignedNO
first_namevarchar(45)NO
last_namevarchar(45)NO
last_updatetimestampNO

CREATE TABLE Statement

CREATE TABLE `actor` ( `actor_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `first_name` varchar(45) NOT NULL, `last_name` varchar(45) NOT NULL, `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`actor_id`), KEY `idx_actor_last_name` (`last_name`) ) ENGINE

Safe to delete?

If you have uninstalled Rest Routes – Custom Endpoints for WordPress REST API, 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_actor`;

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

Other tables from Rest Routes – Custom Endpoints for WordPress REST API