wp_mailster_form_actions

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) unsignedNO
form_idbigint(20) unsignedNO
post_idbigint(20) unsignedNO
subscriber_idbigint(20) unsignedYES
timestampint(11)NO
typetinyint(1) unsignedNO

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.