wp_mailster_form_actions
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| form_id | bigint(20) unsigned | NO |
| post_id | bigint(20) unsigned | NO |
| subscriber_id | bigint(20) unsigned | YES |
| timestamp | int(11) | NO |
| type | tinyint(1) unsigned | NO |
CREATE TABLE Statement
CREATE TABLE wp_mailster_form_actions ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `form_id` bigint(20) unsigned NOT NULL, `post_id` bigint(20) unsigned NOT NULL, `subscriber_id` bigint(20) unsigned NULL DEFAULT NULL, `timestamp` int(11) NOT NULL DEFAULT 0, `type` tinyint(1) unsigned NOT NULL, PRIMARY KEY (`ID`) ) $collate;"; return $structure; } add_action( 'mailster_table_structure', 'mailster_block_forms_table_structure', 10, 2 );
Safe to delete?
If you have uninstalled Mailster Block Forms, 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_mailster_form_actions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.