summaryrefslogtreecommitdiffstatshomepage
path: root/data/tables.sqlite.sql
blob: b7265cc333ad697f1854ddaa69a06623dfffc0f7 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
-- Semantic Scuttle - Tables creation SQL script
-- ! Dont forget to change table names according to $tableprefix defined in config.php !

-- 
-- Table structure for table `sc_bookmarks`
-- 

CREATE TABLE IF NOT EXISTS `sc_bookmarks` (
  `bId` integer NOT NULL,
  `uId` int(11) NOT NULL default '0',
  `bIp` varchar(40) default NULL,
  `bStatus` tinyint(1) NOT NULL default '0',
  `bDatetime` datetime NOT NULL default '0000-00-00 00:00:00',
  `bModified` datetime NOT NULL default '0000-00-00 00:00:00',
  `bTitle` varchar(255) NOT NULL default '',
  `bAddress` varchar(1500) NOT NULL,
  `bDescription` text default NULL,
  `bPrivateNote` text default NULL,
  `bHash` varchar(32) NOT NULL default '',
  `bVotes` int(11) NOT NULL default '0',
  `bVoting` int(11) NOT NULL default '0',
  `bShort` varchar(16) default NULL,
  PRIMARY KEY  (`bId`)
);

CREATE INDEX IF NOT EXISTS `sc_bookmarks_usd` ON `sc_bookmarks` (`uId`, `bStatus`, `bDatetime`);
CREATE INDEX IF NOT EXISTS `sc_bookmarks_hui` ON `sc_bookmarks` (`bHash`, `uId`, `bId`);
CREATE INDEX IF NOT EXISTS `sc_bookmarks_du` ON `sc_bookmarks` (`bDatetime`, `uId`);

-- --------------------------------------------------------

--
-- Table structure for table `sc_tags`
--

CREATE TABLE IF NOT EXISTS `sc_tags` (
  `tId` integer NOT NULL,
  `tag` varchar(100) NOT NULL default '',
  `uId` int(11) NOT NULL default '0',
  `tDescription` text default NULL,
  PRIMARY KEY  (`tId`),
  CONSTRAINT `sc_tags_tag_uId` UNIQUE (`tag`, `uId`)
);

-- --------------------------------------------------------

--
-- Table structure for table `sc_bookmarks2tags`
--

CREATE TABLE IF NOT EXISTS `sc_bookmarks2tags` (
  `id` integer NOT NULL,
  `bId` int(11) NOT NULL default '0',
  `tag` varchar(100) NOT NULL default '',
  PRIMARY KEY  (`id`),
  CONSTRAINT `sc_bookmarks2tags_tag_bId` UNIQUE (`tag`,`bId`)
);

CREATE INDEX IF NOT EXISTS `sc_bookmarks2tags_bId` ON `sc_bookmarks2tags` (`bId`);

-- --------------------------------------------------------

--
-- Table structure for table `sc_users`
--

CREATE TABLE IF NOT EXISTS `sc_users` (
  `uId` integer NOT NULL,
  `username` varchar(25) NOT NULL default '',
  `password` varchar(40) NOT NULL default '',
  `uDatetime` datetime NOT NULL default '0000-00-00 00:00:00',
  `uModified` datetime NOT NULL default '0000-00-00 00:00:00',
  `name` varchar(50) default NULL,
  `email` varchar(50) NOT NULL default '',
  `homepage` varchar(255) default NULL,
  `uContent` text,
  `privateKey` varchar(33) default NULL,
  PRIMARY KEY  (`uId`),
  CONSTRAINT `privateKey` UNIQUE (`privateKey`)
);

-- --------------------------------------------------------

CREATE TABLE IF NOT EXISTS `sc_users_sslclientcerts` (
  `id` INTEGER NOT NULL ,
  `uId` INT NOT NULL ,
  `sslSerial` VARCHAR( 32 ) NOT NULL ,
  `sslClientIssuerDn` VARCHAR( 1024 ) NOT NULL ,
  `sslName` VARCHAR( 64 ) NOT NULL ,
  `sslEmail` VARCHAR( 64 ) NOT NULL ,
  PRIMARY KEY ( `id` )
);

--
-- Table structure for table `sc_watched`
--

CREATE TABLE IF NOT EXISTS `sc_watched` (
  `wId` integer NOT NULL,
  `uId` int(11) NOT NULL default '0',
  `watched` int(11) NOT NULL default '0',
  PRIMARY KEY  (`wId`)
);

CREATE INDEX IF NOT EXISTS `sc_watched_uId` ON `sc_watched` (`uId`);

-- --------------------------------------------------------

--
-- Table structure for table `sc_tags2tags`
--

CREATE TABLE IF NOT EXISTS `sc_tags2tags` (
  `ttId` integer NOT NULL,
  `tag1` varchar(100) NOT NULL default '',
  `tag2` varchar(100) NOT NULL default '',
  `relationType` varchar(32) NOT NULL default '',
  `uId` int(11) NOT NULL default '0',
  PRIMARY KEY (`ttId`),
  CONSTRAINT `sc_tags2tags_tag1_tag2_uId` UNIQUE (`tag1`,`tag2`,`relationType`,`uId`)
);

-- --------------------------------------------------------

--
-- Table structure for table `sc_tagsstats`
--

CREATE TABLE IF NOT EXISTS `sc_tagsstats` (
  `tstId` integer NOT NULL,
  `tag1` varchar(100) NOT NULL default '',
  `relationType` varchar(32) NOT NULL default '',
  `uId` int(11) NOT NULL default '0',
  `nb` int(11) NOT NULL default '0',
  `depth` int(11) NOT NULL default '0',
  `nbupdate` int(11) NOT NULL default '0',
  PRIMARY KEY (`tstId`),
  CONSTRAINT `sc_tagsstats_tag1_type_uId` UNIQUE (`tag1`,`relationType`,`uId`)
);

-- --------------------------------------------------------

--
-- Table structure for table `sc_tagscache`
--

CREATE TABLE IF NOT EXISTS `sc_tagscache` (
  `tcId` integer NOT NULL,
  `tag1` varchar(100) NOT NULL default '',
  `tag2` varchar(100) NOT NULL default '',
  `relationType` varchar(32) NOT NULL default '',
  `uId` int(11) NOT NULL default '0',
  PRIMARY KEY (`tcId`),
  CONSTRAINT `sc_tagscache_tag1_tag2_type_uId` UNIQUE (`tag1`,`tag2`,`relationType`,`uId`)
);

-- --------------------------------------------------------

--
-- Table structure for table `sc_commondescription`
--

CREATE TABLE IF NOT EXISTS `sc_commondescription` (
  `cdId` integer NOT NULL,
  `uId` int(11) NOT NULL default '0',
  `tag` varchar(100) NOT NULL default '',
  `bHash` varchar(32) NOT NULL default '',
  `cdTitle` varchar(255) NOT NULL default '',
  `cdDescription` text default NULL,
  `cdDatetime` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY (`cdId`),
  CONSTRAINT `sc_commondescription_tag_datetime` UNIQUE (`tag`,`CDDATETIME`),
  CONSTRAINT `sc_commondescription_bookmark_datetime` UNIQUE (`bHash`,`cdDatetime`)
);

-- --------------------------------------------------------

--
-- Table structure for table `sc_searchhistory`
--

CREATE TABLE IF NOT EXISTS `sc_searchhistory` (
  `shId` integer NOT NULL,
  `shTerms` varchar(255) NOT NULL default '',
  `shRange` varchar(32) NOT NULL default '',
  `shDatetime` datetime NOT NULL default '0000-00-00 00:00:00',
  `shNbResults` int(6) NOT NULL default '0',
  `uId` int(11) NOT NULL default '0',
  PRIMARY KEY (`shId`)
);


CREATE TABLE IF NOT EXISTS `sc_votes` (
  `bId` INT NOT NULL ,
  `uId` INT NOT NULL ,
  `vote` INT( 2 ) NOT NULL ,
  CONSTRAINT `bid_2` UNIQUE (`bId`,`uId`)
);

CREATE INDEX IF NOT EXISTS `bId` ON `sc_votes` (`bId`);
CREATE INDEX IF NOT EXISTS `uId` ON `sc_votes` (`uId`);


CREATE TABLE IF NOT EXISTS `sc_version` (
  `schema_version` int(11) NOT NULL
);
INSERT INTO `sc_version` (`schema_version`) VALUES ('6');