forked from Yoast/Yoast-SEO-for-TYPO3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
61 lines (57 loc) · 2.45 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
53
54
55
56
57
58
59
60
61
#
# Table structure for table 'pages'
#
CREATE TABLE pages (
seo_title varchar(255) DEFAULT '' NOT NULL,
no_index tinyint(4) DEFAULT '0' NOT NULL,
no_follow tinyint(4) DEFAULT '0' NOT NULL,
og_title varchar(255) DEFAULT '' NOT NULL,
og_description text,
og_image int(11) unsigned DEFAULT '0' NOT NULL,
twitter_title varchar(255) DEFAULT '' NOT NULL,
twitter_description text,
twitter_image int(11) unsigned DEFAULT '0' NOT NULL,
canonical_link varchar(2048) DEFAULT '' NOT NULL,
tx_yoastseo_focuskeyword tinytext,
tx_yoastseo_focuskeyword_synonyms tinytext,
tx_yoastseo_robot_instructions int(11) DEFAULT '0' NOT NULL,
tx_yoastseo_hide_snippet_preview 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,
tx_yoastseo_focuskeyword_premium int(11) DEFAULT '0' NOT NULL,
KEY tx_yoastseo_cornerstone (tx_yoastseo_cornerstone),
);
#
# Table structure for table 'pages'
#
CREATE TABLE pages_language_overlay (
seo_title varchar(255) DEFAULT '' NOT NULL,
no_index tinyint(4) DEFAULT '0' NOT NULL,
no_follow tinyint(4) DEFAULT '0' NOT NULL,
og_title varchar(255) DEFAULT '' NOT NULL,
og_description text,
og_image int(11) unsigned DEFAULT '0' NOT NULL,
twitter_title varchar(255) DEFAULT '' NOT NULL,
twitter_description text,
twitter_image int(11) unsigned DEFAULT '0' NOT NULL,
canonical_link varchar(2048) DEFAULT '' NOT NULL,
tx_yoastseo_focuskeyword tinytext,
tx_yoastseo_focuskeyword_synonyms tinytext,
tx_yoastseo_robot_instructions int(11) DEFAULT '0' NOT NULL,
tx_yoastseo_hide_snippet_preview 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,
tx_yoastseo_focuskeyword_premium int(11) DEFAULT '0' NOT NULL,
KEY tx_yoastseo_cornerstone (tx_yoastseo_cornerstone),
);
CREATE TABLE tt_content (
tx_yoastseo_linking_suggestions int(11) DEFAULT '0' NOT NULL
);