Advertisement
jaideep06

redirection cache

Nov 10th, 2023
1,244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.51 KB | None | 0 0
  1. CREATE TABLE `rm_rank_math_redirections_cache` (
  2.   `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  3.   `from_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  4.   `redirection_id` bigint(20) unsigned NOT NULL,
  5.   `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  6.   `object_type` varchar(10) NOT NULL DEFAULT 'post',
  7.   `is_redirected` tinyint(1) NOT NULL DEFAULT 0,
  8.   PRIMARY KEY (`id`),
  9.   KEY `redirection_id` (`redirection_id`)
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement