-
Notifications
You must be signed in to change notification settings - Fork 56
/
ext_tables.sql
40 lines (35 loc) · 1.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
#
# Table structure for table 'pages'
#
CREATE TABLE pages (
tx_yoastseo_focuskeyword tinytext,
tx_yoastseo_focuskeyword_synonyms tinytext,
tx_yoastseo_focuskeyword_related 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_robots_noimageindex tinyint(4) DEFAULT '0' NOT NULL,
tx_yoastseo_robots_noarchive tinyint(4) DEFAULT '0' NOT NULL,
tx_yoastseo_robots_nosnippet tinyint(4) DEFAULT '0' NOT NULL,
KEY tx_yoastseo_cornerstone (tx_yoastseo_cornerstone),
);
#
# Table structure for 'tx_yoastseo_related_focuskeyword'
#
CREATE TABLE tx_yoastseo_related_focuskeyword (
keyword varchar(255) DEFAULT '' NOT NULL,
synonyms varchar(255) DEFAULT '' NOT NULL,
uid_foreign int(11) DEFAULT '0' NOT NULL,
tablenames varchar(64) DEFAULT '' NOT NULL,
);
#
# Table structure for 'tx_yoastseo_prominent_word'
#
CREATE TABLE tx_yoastseo_prominent_word (
site int(11) DEFAULT '0' NOT NULL,
stem varchar(255) DEFAULT '' NOT NULL,
weight int(11) DEFAULT '0' NOT NULL,
uid_foreign int(11) DEFAULT '0' NOT NULL,
tablenames varchar(64) DEFAULT '' NOT NULL,
);