Advertisement
jaideep06

404 Monitor

Jul 26th, 2024
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.54 KB | None | 0 0
  1. CREATE TABLE `wp_rank_math_404_logs` (
  2.   `id` BIGINT UNSIGNED NOT NULL,
  3.   `uri` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  4.   `url_to` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  5.   `times_accessed` BIGINT UNSIGNED NOT NULL DEFAULT '1',
  6.   `referer` VARCHAR(225) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  7.   `user_agent` VARCHAR(225) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  8.   `accessed` datetime NOT NULL DEFAULT '2024-01-01 00:00:00'
  9. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement