Advertisement
Guest User

Untitled

a guest
May 25th, 2021
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.64 KB | None | 0 0
  1. DROP TABLE IF EXISTS `wp_rank_math_404_logs`;
  2. CREATE TABLE `wp_rank_math_404_logs` (
  3.   `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  4.   `uri` VARCHAR(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  5.   `accessed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  6.   `times_accessed` BIGINT(20) UNSIGNED NOT NULL DEFAULT 1,
  7.   `ip` VARCHAR(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  8.   `referer` VARCHAR(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  9.   `user_agent` VARCHAR(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  10.   PRIMARY KEY (`id`),
  11.   KEY `uri` (`uri`(191))
  12. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement