Advertisement
Guest User

Untitled

a guest
Apr 19th, 2021
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. DROP TABLE IF EXISTS `rm_rank_math_redirections`;
  2. CREATE TABLE `rm_rank_math_redirections` (
  3. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  4. `sources` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  5. `url_to` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  6. `header_code` smallint(4) unsigned NOT NULL,
  7. `hits` bigint(20) unsigned NOT NULL DEFAULT '0',
  8. `status` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'active',
  9. `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  10. `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  11. `last_accessed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  12. PRIMARY KEY (`id`),
  13. KEY `status` (`status`)
  14. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  15.  
  16. DROP TABLE IF EXISTS `rm_rank_math_redirections_cache`;
  17. CREATE TABLE `rm_rank_math_redirections_cache` (
  18. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  19. `from_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  20. `redirection_id` bigint(20) unsigned NOT NULL,
  21. `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  22. `object_type` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  23. `is_redirected` tinyint(1) NOT NULL DEFAULT '0',
  24. PRIMARY KEY (`id`),
  25. KEY `redirection_id` (`redirection_id`)
  26. ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement