Advertisement
Guest User

Rank Math redirections table

a guest
Jul 31st, 2019
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.77 KB | None | 0 0
  1. DROP TABLE IF EXISTS `wp_rank_math_redirections`;
  2. CREATE TABLE IF NOT EXISTS `wp_rank_math_redirections` (
  3.   `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  4.   `sources` text COLLATE utf8mb4_unicode_520_ci 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;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement