WordPress database error: [Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause]CREATE TABLE IF NOT EXISTS `wp_check_email_spam_analyzer` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`html_content` LONGTEXT DEFAULT NULL,
`spam_assassin` LONGTEXT DEFAULT NULL,
`authenticated` LONGTEXT DEFAULT NULL,
`block_listed` TEXT DEFAULT NULL,
`broken_links` TEXT DEFAULT NULL,
`final_score` TEXT DEFAULT NULL,
`test_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (id)
)
ENGINE='InnoDB'
DEFAULT CHARACTER SET utf8;