wp_at_activities
StaticStores at activities data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| description | varchar(255) | NO |
| location | text | NO |
| timestamp | datetime | NO |
| withAttendance | bool | NO |
CREATE TABLE Statement
CREATE TABLE wp_at_activities( id bigint(20) NOT NULL AUTO_INCREMENT, description varchar(255) NOT NULL, location text NOT NULL, timestamp datetime NOT NULL, withAttendance bool 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_activities`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Attend