wp_alertify_subscriptions

Static

Stores alertify subscriptions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
product_idbigint(20)NO
variation_idbigint(20)YES
emailvarchar(100)NO
namevarchar(100)YES
phonevarchar(20)YES
statusvarchar(20)YES
created_atdatetimeYES
notified_atdatetimeYES

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.