wp_id4me_authorities

Static

Stores id4me authorities data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑authority_idbigint(20) unsignedNO
authority_hostnamevarchar(150)NO
authority_registereddatetimeNO
authority_expireddatetimeYES
authority_configurationtextNO
client_idvarchar(255)NO
client_secretvarchar(255)NO
clientTEXTYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_id4me_authorities` ( `authority_id` bigint(20) unsigned NOT NULL auto_increment, `authority_hostname` varchar(150) NOT NULL, `authority_registered` datetime NOT NULL default '0000-00-00 00:00:00', `authority_expired` datetime NULL, `authority_configuration` text NOT NULL, `client_id` varchar(255) NOT NULL, `client_secret` varchar(255) NOT NULL, `client` TEXT, PRIMARY KEY (`authority_id`), UNIQUE (`authority_hostname`) ) $charset_collate;" // phpcs:ignore );

Safe to delete?

If you have uninstalled ID4me, 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_id4me_authorities`;

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