wp_at_subscriptions
StaticStores at subscriptions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| name | varchar(255) | NO |
| varchar(255) | NO | |
| timestamp | datetime | NO |
| validatedTimestamp | datetime | NO |
| isValid | bool | YES |
| verificationCode | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE wp_at_subscriptions( id bigint(20) NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, email varchar(255) NOT NULL, timestamp datetime NOT NULL, validatedTimestamp datetime NOT NULL, isValid bool, verificationCode varchar(255) NOT NULL, UNIQUE KEY id (id))ENGINE
Safe to delete?
If you have uninstalled WP Attend, 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_at_subscriptions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Attend