wp_checkpoint

Static

Stores checkpoint data created by this plugin.

Column Definitions

ColumnTypeNullable
checkpoint_idBIGINTNO
nameVARCHAR(45)NO
dateDATETIMENO
actionVARCHAR(255)NO
contact_idBIGINTNO

CREATE TABLE Statement

CREATE TABLE `checkpoint` ( `checkpoint_id` BIGINT NOT NULL , `name` VARCHAR(45) NOT NULL , `date` DATETIME NOT NULL , `action` VARCHAR(255) NOT NULL , `contact_id` BIGINT NOT NULL , PRIMARY KEY (`checkpoint_id`), KEY `fkIdx_200` (`contact_id`), CONSTRAINT `FK_200` FOREIGN KEY `fkIdx_200` (`contact_id`) REFERENCES `contacts` (`contact_id`) );

Safe to delete?

If you have uninstalled Email Reminders, 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_checkpoint`;

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

Other tables from Email Reminders