-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.sql
511 lines (473 loc) · 12.4 KB
/
install.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
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
# MySQL dump 7.1
#
# Host: localhost Database: drop
#--------------------------------------------------------
# Server version 3.22.32
#
# Table structure for table 'access'
#
CREATE TABLE access (
id tinyint(10) NOT NULL auto_increment,
mask varchar(255) DEFAULT '' NOT NULL,
type varchar(16) DEFAULT '' NOT NULL,
reason text NOT NULL,
UNIQUE mask (mask),
PRIMARY KEY (id)
);
#
# Table structure for table 'blocks'
#
CREATE TABLE blocks (
name varchar(64) DEFAULT '' NOT NULL,
module varchar(64) DEFAULT '' NOT NULL,
offset tinyint(2) DEFAULT '0' NOT NULL,
status tinyint(2) DEFAULT '0' NOT NULL,
weight tinyint(1) DEFAULT '0' NOT NULL,
region tinyint(1) DEFAULT '0' NOT NULL,
remove tinyint(1) DEFAULT '0' NOT NULL,
PRIMARY KEY (name)
);
#
# Table structure for table 'blog'
#
CREATE TABLE blog (
lid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
body text NOT NULL,
PRIMARY KEY (lid)
);
#
# Table structure for table 'book'
#
CREATE TABLE book (
lid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
body text NOT NULL,
section int(10) DEFAULT '0' NOT NULL,
parent int(10) DEFAULT '0' NOT NULL,
weight tinyint(3) DEFAULT '0' NOT NULL,
pid int(10) DEFAULT '0' NOT NULL,
log text NOT NULL,
PRIMARY KEY (lid)
);
#
# Table structure for table 'boxes'
#
CREATE TABLE boxes (
bid tinyint(4) NOT NULL auto_increment,
title varchar(64) DEFAULT '' NOT NULL,
body text,
info varchar(128) DEFAULT '' NOT NULL,
link varchar(128) DEFAULT '' NOT NULL,
type tinyint(2) DEFAULT '0' NOT NULL,
UNIQUE subject (title),
UNIQUE info (info),
PRIMARY KEY (bid)
);
#
# Table structure for table 'bundle'
#
CREATE TABLE bundle (
bid int(11) NOT NULL auto_increment,
title varchar(255) DEFAULT '' NOT NULL,
attributes varchar(255) DEFAULT '' NOT NULL,
UNIQUE title (title),
PRIMARY KEY (bid)
);
#
# Table structure for table 'cache'
#
CREATE TABLE cache (
url varchar(255) DEFAULT '' NOT NULL,
data text NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (url)
);
#
# Table structure for table 'category'
#
CREATE TABLE category (
cid int(10) unsigned NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
type varchar(16) DEFAULT '' NOT NULL,
post int(3) DEFAULT '0' NOT NULL,
dump int(3) DEFAULT '0' NOT NULL,
expire int(3) DEFAULT '0' NOT NULL,
comment int(2) unsigned DEFAULT '0' NOT NULL,
submission int(2) unsigned DEFAULT '0' NOT NULL,
promote int(2) unsigned DEFAULT '0' NOT NULL,
UNIQUE name (name),
PRIMARY KEY (cid)
);
#
# Table structure for table 'channel'
#
CREATE TABLE channel (
id int(11) NOT NULL auto_increment,
site varchar(255) DEFAULT '' NOT NULL,
file varchar(255) DEFAULT '' NOT NULL,
url varchar(255) DEFAULT '' NOT NULL,
contact varchar(255) DEFAULT '',
timestamp int(11),
UNIQUE site (site),
UNIQUE file (file),
UNIQUE url (url),
PRIMARY KEY (id)
);
#
# Table structure for table 'chatevents'
#
CREATE TABLE chatevents (
id int(11) NOT NULL auto_increment,
body varchar(255) DEFAULT '' NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);
#
# Table structure for table 'chatmembers'
#
CREATE TABLE chatmembers (
id int(11) NOT NULL auto_increment,
nick varchar(32) DEFAULT '' NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);
#
# Table structure for table 'collection'
#
CREATE TABLE collection (
cid int(10) unsigned NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
types varchar(128) DEFAULT '' NOT NULL,
UNIQUE name (name),
PRIMARY KEY (cid)
);
#
# Table structure for table 'comments'
#
CREATE TABLE comments (
cid int(6) NOT NULL auto_increment,
pid int(6) DEFAULT '0' NOT NULL,
lid int(6) DEFAULT '0' NOT NULL,
author int(6) DEFAULT '0' NOT NULL,
subject varchar(64) DEFAULT '' NOT NULL,
comment text NOT NULL,
hostname varchar(128) DEFAULT '' NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
score int(6) DEFAULT '0' NOT NULL,
votes int(6) DEFAULT '0' NOT NULL,
link varchar(16) DEFAULT '' NOT NULL,
users text NOT NULL,
PRIMARY KEY (cid),
KEY lid (lid)
);
#
# Table structure for table 'cvs'
#
CREATE TABLE cvs (
user varchar(32) DEFAULT '' NOT NULL,
files text,
status int(2) DEFAULT '0' NOT NULL,
message text,
timestamp int(11) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'diaries'
#
CREATE TABLE diaries (
id int(5) NOT NULL auto_increment,
author int(6) DEFAULT '0' NOT NULL,
text text,
timestamp int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);
#
# Table structure for table 'diary'
#
CREATE TABLE diary (
lid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
body text NOT NULL,
PRIMARY KEY (lid)
);
#
# Table structure for table 'entry'
#
CREATE TABLE entry (
eid int(10) unsigned NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
attributes varchar(255) DEFAULT '' NOT NULL,
collection varchar(32) DEFAULT '' NOT NULL,
UNIQUE name (name,collection),
PRIMARY KEY (eid)
);
#
# Table structure for table 'feed'
#
CREATE TABLE feed (
fid int(11) NOT NULL auto_increment,
title varchar(255) DEFAULT '' NOT NULL,
url varchar(255) DEFAULT '' NOT NULL,
refresh int(11),
uncache int(11),
timestamp int(11),
attributes varchar(255) DEFAULT '' NOT NULL,
link varchar(255) DEFAULT '' NOT NULL,
description text NOT NULL,
UNIQUE title (title),
UNIQUE link (url),
PRIMARY KEY (fid)
);
#
# Table structure for table 'file'
#
CREATE TABLE file (
lid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
version varchar(10) DEFAULT '' NOT NULL,
url varchar(255) DEFAULT '' NOT NULL,
downloads int(10) unsigned DEFAULT '0' NOT NULL,
abstract text NOT NULL,
description text NOT NULL,
homepage varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (lid)
);
#
# Table structure for table 'forum'
#
CREATE TABLE forum (
lid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
body text NOT NULL,
PRIMARY KEY (lid)
);
#
# Table structure for table 'item'
#
CREATE TABLE item (
iid int(11) NOT NULL auto_increment,
fid int(11) DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
link varchar(255) DEFAULT '' NOT NULL,
author varchar(255) DEFAULT '' NOT NULL,
description text NOT NULL,
timestamp int(11),
attributes varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (iid)
);
#
# Table structure for table 'layout'
#
CREATE TABLE layout (
user int(11) DEFAULT '0' NOT NULL,
block varchar(64) DEFAULT '' NOT NULL
);
#
# Table structure for table 'locales'
#
CREATE TABLE locales (
id int(11) NOT NULL auto_increment,
location varchar(128) DEFAULT '' NOT NULL,
string text NOT NULL,
da text NOT NULL,
fi text NOT NULL,
fr text NOT NULL,
en text NOT NULL,
es text NOT NULL,
nl text NOT NULL,
no text NOT NULL,
sw text NOT NULL,
PRIMARY KEY (id)
);
#
# Table structure for table 'modules'
#
CREATE TABLE modules (
name varchar(64) DEFAULT '' NOT NULL,
PRIMARY KEY (name)
);
#
# Table structure for table 'node'
#
CREATE TABLE node (
nid int(10) unsigned NOT NULL auto_increment,
lid int(10) DEFAULT '0' NOT NULL,
type varchar(16) DEFAULT '' NOT NULL,
title varchar(128) DEFAULT '' NOT NULL,
score int(11) DEFAULT '0' NOT NULL,
votes int(11) DEFAULT '0' NOT NULL,
author int(6) DEFAULT '0' NOT NULL,
status int(4) DEFAULT '1' NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
comment int(2) DEFAULT '1' NOT NULL,
promote int(2) DEFAULT '1' NOT NULL,
moderate text NOT NULL,
users text NOT NULL,
timestamp_posted int(11) DEFAULT '0' NOT NULL,
timestamp_queued int(11) DEFAULT '0' NOT NULL,
timestamp_hidden int(11) DEFAULT '0' NOT NULL,
attributes varchar(255) DEFAULT '' NOT NULL,
KEY type (lid,type),
KEY author (author),
KEY title (title,type),
PRIMARY KEY (nid),
KEY promote (promote),
KEY status (status)
);
#
# Table structure for table 'page'
#
CREATE TABLE page (
lid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
link varchar(128) DEFAULT '' NOT NULL,
body text NOT NULL,
format tinyint(2) DEFAULT '0' NOT NULL,
PRIMARY KEY (lid)
);
#
# Table structure for table 'poll'
#
CREATE TABLE poll (
lid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
runtime int(10) DEFAULT '0' NOT NULL,
voters text NOT NULL,
active int(2) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (lid)
);
#
# Table structure for table 'poll_choices'
#
CREATE TABLE poll_choices (
chid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
chtext varchar(128) DEFAULT '' NOT NULL,
chvotes int(6) DEFAULT '0' NOT NULL,
chorder int(2) DEFAULT '0' NOT NULL,
PRIMARY KEY (chid)
);
#
# Table structure for table 'rating'
#
CREATE TABLE rating (
user int(6) DEFAULT '0' NOT NULL,
new int(6) DEFAULT '0' NOT NULL,
old int(6) DEFAULT '0' NOT NULL,
PRIMARY KEY (user)
);
#
# Table structure for table 'referer'
#
CREATE TABLE referer (
url varchar(255) DEFAULT '' NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'role'
#
CREATE TABLE role (
rid int(10) unsigned NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
perm text NOT NULL,
UNIQUE name (name),
PRIMARY KEY (rid)
);
#
# Table structure for table 'site'
#
CREATE TABLE site (
sid int(10) unsigned NOT NULL auto_increment,
name varchar(128) DEFAULT '' NOT NULL,
link varchar(255) DEFAULT '' NOT NULL,
size text NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
feed varchar(255) DEFAULT '' NOT NULL,
UNIQUE title (name),
UNIQUE url (link),
PRIMARY KEY (sid)
);
#
# Table structure for table 'story'
#
CREATE TABLE story (
lid int(10) unsigned NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
abstract text NOT NULL,
body text NOT NULL,
PRIMARY KEY (lid)
);
#
# Table structure for table 'tag'
#
CREATE TABLE tag (
tid int(10) unsigned NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
attributes varchar(255) DEFAULT '' NOT NULL,
collections varchar(32) DEFAULT '' NOT NULL,
UNIQUE name (name,collections),
PRIMARY KEY (tid)
);
#
# Table structure for table 'topic'
#
CREATE TABLE topic (
tid int(10) unsigned NOT NULL auto_increment,
pid int(10) unsigned DEFAULT '0' NOT NULL,
name varchar(32) DEFAULT '' NOT NULL,
moderate text NOT NULL,
UNIQUE name (name),
PRIMARY KEY (tid)
);
#
# Table structure for table 'users'
#
CREATE TABLE users (
id int(10) unsigned NOT NULL auto_increment,
name varchar(60) DEFAULT '' NOT NULL,
userid varchar(32) DEFAULT '' NOT NULL,
passwd varchar(20) DEFAULT '' NOT NULL,
real_email varchar(60) DEFAULT '' NOT NULL,
fake_email varchar(60) DEFAULT '' NOT NULL,
url varchar(100) DEFAULT '' NOT NULL,
nodes tinyint(2) DEFAULT '10',
mode tinyint(1) DEFAULT '0' NOT NULL,
sort tinyint(1) DEFAULT '0',
threshold tinyint(1) DEFAULT '0',
bio tinytext NOT NULL,
theme varchar(255) DEFAULT '' NOT NULL,
signature varchar(255) DEFAULT '' NOT NULL,
last_access int(10) unsigned,
last_host varchar(255),
status tinyint(4) DEFAULT '0' NOT NULL,
hash varchar(12) DEFAULT '' NOT NULL,
timezone varchar(8),
rating decimal(8,2),
language char(2) DEFAULT '' NOT NULL,
role varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (id),
UNIQUE name (name),
UNIQUE userid (userid),
UNIQUE real_email (real_email)
);
#
# Table structure for table 'variable'
#
CREATE TABLE variable (
name varchar(32) DEFAULT '' NOT NULL,
value text NOT NULL,
PRIMARY KEY (name)
);
#
# Table structure for table 'watchdog'
#
CREATE TABLE watchdog (
id int(5) NOT NULL auto_increment,
user int(6) DEFAULT '0' NOT NULL,
type varchar(16) DEFAULT '' NOT NULL,
message varchar(255) DEFAULT '' NOT NULL,
location varchar(128) DEFAULT '' NOT NULL,
hostname varchar(128) DEFAULT '' NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);