wp_hook_list

Static

Stores hook list data created by this plugin.

Column Definitions

ColumnTypeNullable
called_byvarchar(96)NO
hook_namevarchar(96)NO
hook_typevarchar(15)NO
first_callint(11)NO
arg_counttinyint(4)NO
file_namevarchar(128)NO
line_numsmallintNO

CREATE TABLE Statement

CREATE TABLE wp_hook_list ( called_by varchar(96) NOT NULL, hook_name varchar(96) NOT NULL, hook_type varchar(15) NOT NULL, first_call int(11) NOT NULL, arg_count tinyint(4) NOT NULL, file_name varchar(128) NOT NULL, line_num smallint NOT NULL, PRIMARY KEY (first_call,hook_name))" );

Safe to delete?

If you have uninstalled Awesome Studio, 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_hook_list`;

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