wp_globaliser_hooks

Verified

Stores globaliser hooks data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_globaliser_hooks` (\n  `id` int unsigned NOT NULL AUTO_INCREMENT,\n  `type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `parameter` mediumtext COLLATE utf8mb4_unicode_520_ci,\n  `create_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n  `update_date` datetime DEFAULT NULL,\n  `status` tinyint(1) DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Globaliser, 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_globaliser_hooks`;

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