Advertisement
Guest User

wp_rank_math_analytics_gsc

a guest
Oct 30th, 2020
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.43 KB | None | 0 0
  1. CREATE TABLE wp_rank_math_analytics_gsc (
  2.     id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  3.     created TIMESTAMP NOT NULL,
  4.     query VARCHAR(1000) NOT NULL,
  5.     page VARCHAR(500) NOT NULL,
  6.     clicks MEDIUMINT(6) NOT NULL,
  7.     impressions MEDIUMINT(6) NOT NULL,
  8.     position DOUBLE NOT NULL,
  9.     ctr DOUBLE NOT NULL,
  10.     PRIMARY KEY (id),
  11.     INDEX analytics_query (query),
  12.     INDEX analytics_page (page),
  13.     INDEX clicks (clicks),
  14.     INDEX position (position)
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement