Advertisement
Guest User

Untitled

a guest
Sep 19th, 2023
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.06 KB | None | 0 0
  1. CREATE TABLE `wp_rank_math_redirections` (
  2.   `id` BIGINT UNSIGNED NOT NULL,
  3.   `sources` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  4.   `url_to` text COLLATE utf8mb4_unicode_ci NOT NULL,
  5.   `header_code` SMALLINT UNSIGNED NOT NULL,
  6.   `hits` BIGINT UNSIGNED NOT NULL DEFAULT '0',
  7.   `status` VARCHAR(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  8.   `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  9.   `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  10.   `last_accessed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
  11. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  12.  
  13. CREATE TABLE `wp_rank_math_redirections_cache` (
  14.   `id` BIGINT UNSIGNED NOT NULL,
  15.   `from_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  16.   `redirection_id` BIGINT UNSIGNED NOT NULL,
  17.   `object_id` BIGINT UNSIGNED NOT NULL DEFAULT '0',
  18.   `object_type` VARCHAR(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  19.   `is_redirected` tinyint(1) NOT NULL DEFAULT '0'
  20. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement