wp_maintenance_page

Static

Stores maintenance page data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
emailvarchar(50)NO
insert_datedatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_maintenance_page ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `email` varchar(50) NOT NULL UNIQUE, `insert_date` datetime NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET

Safe to delete?

If you have uninstalled Maintenance Page, 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_maintenance_page`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.