wp_hook_list
StaticStores hook list data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| called_by | varchar(96) | NO |
| hook_name | varchar(96) | NO |
| hook_type | varchar(15) | NO |
| first_call | int(11) | NO |
| arg_count | tinyint(4) | NO |
| file_name | varchar(128) | NO |
| line_num | smallint | NO |
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.