wp_kc_ml_magic_links
StaticStores kc ml magic links data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_kc_ml_magic_links` ( id bigint(20) NOT NULL AUTO_INCREMENT, user_id bigint(20) NOT NULL, token varchar(64) NOT NULL, expires datetime NOT NULL, used tinyint(1) DEFAULT 0, ip_address varchar(45), created_at datetime DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY token (token), KEY user_id (user_id), KEY expires (expires) ) $collate; "; return $tables; } /** * Get files to create * * @return array[] * * @since 1.1.0 */ public static function get_files() { // If we need to create more files/ dirs in the future // use following code return array_merge( [], self::get_110_files() );Safe to delete?
If you have uninstalled Magic Link – Secure one click passwordless login, 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_kc_ml_magic_links`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Magic Link – Secure one click passwordless login