wp_at_sms_plugin_saved_contacts

Verified

Stores at sms plugin saved contacts data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_at_sms_plugin_saved_contacts` (\n  `id` mediumint NOT NULL AUTO_INCREMENT,\n  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `contact_name` varchar(225) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `contact_phone` varchar(225) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `contact_group` varchar(225) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'general',\n  UNIQUE KEY `id` (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Africa's Talking SMS Plugin, 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_sms_plugin_saved_contacts`;

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