wp_rega_notifications

Static

Stores rega notifications data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintYES
AdlicenseNumberint(11)YES
AdlicenseStatusCodeint(11)YES
AdlicenseStatusNameARvarchar(250)YES
ActionDateTimeDateTimeYES
ActionReasonvarchar(250)YES
created_atTIMESTAMPYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_rega_notifications ( id int PRIMARY KEY auto_increment, AdlicenseNumber int(11) DEFAULT NULL, AdlicenseStatusCode int(11) DEFAULT NULL, AdlicenseStatusNameAR varchar(250) DEFAULT NULL, ActionDateTime DateTime DEFAULT NULL, ActionReason varchar(250) DEFAULT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP )" );

Safe to delete?

If you have uninstalled REGA Verifier, 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_rega_notifications`;

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

Other tables from REGA Verifier