wp_rega_notifications
StaticStores rega notifications data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | YES |
| AdlicenseNumber | int(11) | YES |
| AdlicenseStatusCode | int(11) | YES |
| AdlicenseStatusNameAR | varchar(250) | YES |
| ActionDateTime | DateTime | YES |
| ActionReason | varchar(250) | YES |
| created_at | TIMESTAMP | YES |
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