wp_alertify_subscriptions
StaticStores alertify subscriptions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| product_id | bigint(20) | NO |
| variation_id | bigint(20) | YES |
| varchar(100) | NO | |
| name | varchar(100) | YES |
| phone | varchar(20) | YES |
| status | varchar(20) | YES |
| created_at | datetime | YES |
| notified_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_alertify_subscriptions ( id bigint(20) NOT NULL AUTO_INCREMENT, product_id bigint(20) NOT NULL, variation_id bigint(20) DEFAULT NULL, email varchar(100) NOT NULL, name varchar(100) DEFAULT NULL, phone varchar(20) DEFAULT NULL, status varchar(20) DEFAULT 'pending', created_at datetime DEFAULT CURRENT_TIMESTAMP, notified_at datetime DEFAULT NULL, PRIMARY KEY (id), KEY product_id (product_id), KEY email (email), KEY status (status) ) $charset_collate;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
Safe to delete?
If you have uninstalled Alertify – Back in Stock WooCommerce Alerts & Email Notifications, 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_alertify_subscriptions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.