forked from Yoast/Yoast-SEO-for-TYPO3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
52 lines (51 loc) · 2.3 KB
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Table structure for table 'pages'
#
CREATE TABLE pages (
seo_title varchar(255) DEFAULT '' NOT NULL,
tx_yoastseo_focuskeyword varchar(100) DEFAULT '' NOT NULL,
canonical_url varchar(255) DEFAULT '' NOT NULL,
tx_yoastseo_robot_instructions int(11) DEFAULT '0' NOT NULL,
og_title varchar(255) DEFAULT '' NOT NULL,
og_description varchar(255) DEFAULT '' NOT NULL,
og_image int(11) DEFAULT '0' NOT NULL,
twitter_title varchar(255) DEFAULT '' NOT NULL,
twitter_description varchar(255) DEFAULT '' NOT NULL,
twitter_image int(11) DEFAULT '0' NOT NULL,
last_mod int(11) DEFAULT '0' NOT NULL,
tx_yoastseo_dont_use tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_hide_snippet_preview tinyint(3) DEFAULT '0' NOT NULL,
no_index tinyint(3) DEFAULT '0' NOT NULL,
no_follow tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_cornerstone tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_score_readability varchar(50) DEFAULT '' NOT NULL,
tx_yoastseo_score_seo varchar(50) DEFAULT '' NOT NULL,
tx_yoastseo_snippetpreview tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_focuskeyword_analysis tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_readability_analysis tinyint(3) DEFAULT '0' NOT NULL,
KEY tx_yoastseo_cornerstone (tx_yoastseo_cornerstone),
);
#
# Table structure for table 'pages_language_overlay'
#
CREATE TABLE pages_language_overlay (
seo_title varchar(255) DEFAULT '' NOT NULL,
tx_yoastseo_focuskeyword varchar(100) DEFAULT '' NOT NULL,
canonical_url varchar(255) DEFAULT '' NOT NULL,
tx_yoastseo_robot_instructions int(11) DEFAULT '0' NOT NULL,
og_title varchar(255) DEFAULT '' NOT NULL,
og_description varchar(255) DEFAULT '' NOT NULL,
og_image int(11) DEFAULT '0' NOT NULL,
twitter_title varchar(255) DEFAULT '' NOT NULL,
twitter_description varchar(255) DEFAULT '' NOT NULL,
twitter_image int(11) DEFAULT '0' NOT NULL,
tx_yoastseo_cornerstone tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_score_readability varchar(50) DEFAULT '' NOT NULL,
tx_yoastseo_score_seo varchar(50) DEFAULT '' NOT NULL,
no_index tinyint(3) DEFAULT '0' NOT NULL,
no_follow tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_snippetpreview tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_focuskeyword_analysis tinyint(3) DEFAULT '0' NOT NULL,
tx_yoastseo_readability_analysis tinyint(3) DEFAULT '0' NOT NULL,
KEY tx_yoastseo_cornerstone (tx_yoastseo_cornerstone),
);