-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.sql
484 lines (331 loc) · 9.92 KB
/
schema.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
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: hotlink_stats; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE hotlink_stats (
image_id integer NOT NULL,
referrer_url text NOT NULL,
hotlink_count integer NOT NULL,
hotlink_limit integer,
goatse_count integer NOT NULL,
initial_hotlink_time bigint NOT NULL
);
--
-- Name: image_postings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE image_postings_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: image_postings; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE image_postings (
id integer DEFAULT nextval('image_postings_id_seq'::regclass) NOT NULL,
image_id integer NOT NULL,
line_id integer NOT NULL,
url text NOT NULL,
"time" integer NOT NULL
);
--
-- Name: image_postsold; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE image_postsold (
image_id integer NOT NULL,
line_id integer NOT NULL,
url text NOT NULL,
id integer NOT NULL
);
--
-- Name: image_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE image_tags (
image_id integer NOT NULL,
tag_id integer NOT NULL,
ip text NOT NULL,
tag_time bigint
);
--
-- Name: image_visits; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE image_visits (
image_id integer NOT NULL,
"time" bigint NOT NULL,
visit_key text NOT NULL
);
--
-- Name: images_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE images_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: images; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE images (
id integer DEFAULT nextval('images_id_seq'::regclass) NOT NULL,
local_filename text NOT NULL,
local_thumbname text NOT NULL,
md5sum text NOT NULL,
thumbnail_width integer NOT NULL,
thumbnail_height integer NOT NULL,
image_width integer NOT NULL,
image_height integer NOT NULL,
image_type text NOT NULL,
fullviews integer DEFAULT 0 NOT NULL,
rating integer DEFAULT 0 NOT NULL,
size integer,
thumbnail_size integer,
on_s3 boolean DEFAULT false NOT NULL
);
--
-- Name: ips; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE ips (
ip text NOT NULL,
name text
);
--
-- Name: irc_lines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE irc_lines_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: irc_lines; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE irc_lines (
id integer DEFAULT nextval('irc_lines_id_seq'::regclass) NOT NULL,
"time" bigint NOT NULL,
nick text NOT NULL,
mask text NOT NULL,
channel text,
text text NOT NULL
);
--
-- Name: rating_raters; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE rating_raters (
image_id integer NOT NULL,
sess_id integer NOT NULL
);
--
-- Name: rating_ratings; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE rating_ratings (
image_id integer NOT NULL,
ip text NOT NULL,
rating integer NOT NULL
);
--
-- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE sessions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: sessions; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE sessions (
id integer DEFAULT nextval('sessions_id_seq'::regclass) NOT NULL,
start_time bigint NOT NULL,
ip text NOT NULL,
admin integer
);
--
-- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE tags (
id integer DEFAULT nextval('tags_id_seq'::regclass) NOT NULL,
name text NOT NULL,
type text NOT NULL,
has_other_type integer DEFAULT 0 NOT NULL
);
--
-- Name: test; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE test (
foo text
);
--
-- Name: upload_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE upload_queue_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: upload_queue; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE upload_queue (
id integer DEFAULT nextval('upload_queue_id_seq'::regclass) NOT NULL,
url text NOT NULL,
line_id integer,
success boolean,
fail_reason text,
attempted boolean DEFAULT false NOT NULL,
image_posting_id integer
);
--
-- Name: image_postings_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY image_postings
ADD CONSTRAINT image_postings_pkey PRIMARY KEY (id);
--
-- Name: image_postsold_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY image_postsold
ADD CONSTRAINT image_postsold_pkey PRIMARY KEY (id);
--
-- Name: image_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY image_tags
ADD CONSTRAINT image_tags_pkey PRIMARY KEY (image_id, tag_id);
--
-- Name: images_local_filename_key; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY images
ADD CONSTRAINT images_local_filename_key UNIQUE (local_filename);
--
-- Name: images_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY images
ADD CONSTRAINT images_pkey PRIMARY KEY (id);
--
-- Name: ips_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY ips
ADD CONSTRAINT ips_pkey PRIMARY KEY (ip);
--
-- Name: irc_lines_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY irc_lines
ADD CONSTRAINT irc_lines_pkey PRIMARY KEY (id);
--
-- Name: rating_raters_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY rating_raters
ADD CONSTRAINT rating_raters_pkey PRIMARY KEY (image_id, sess_id);
--
-- Name: sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY sessions
ADD CONSTRAINT sessions_pkey PRIMARY KEY (id);
--
-- Name: tags_name_type_key; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY tags
ADD CONSTRAINT tags_name_type_key UNIQUE (name, type);
--
-- Name: tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY tags
ADD CONSTRAINT tags_pkey PRIMARY KEY (id);
--
-- Name: upload_queue_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY upload_queue
ADD CONSTRAINT upload_queue_pkey PRIMARY KEY (id);
--
-- Name: hotlink_stats_image_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX hotlink_stats_image_id_idx ON hotlink_stats USING btree (image_id);
--
-- Name: hotlink_stats_referrer_url_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX hotlink_stats_referrer_url_idx ON hotlink_stats USING btree (referrer_url);
--
-- Name: image_postings_image_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX image_postings_image_id_idx ON image_postings USING btree (image_id);
--
-- Name: image_postings_line_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX image_postings_line_id_idx ON image_postings USING btree (line_id);
--
-- Name: image_postings_time_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX image_postings_time_idx ON image_postings USING btree ("time");
--
-- Name: image_postings_time_image_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX image_postings_time_image_id_idx ON image_postings USING btree ("time", image_id);
--
-- Name: image_tags_image_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX image_tags_image_id_idx ON image_tags USING btree (image_id);
--
-- Name: image_tags_tag_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX image_tags_tag_id_idx ON image_tags USING btree (tag_id);
--
-- Name: image_visits_image_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX image_visits_image_id_idx ON image_visits USING btree (image_id);
--
-- Name: image_visits_visit_key_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX image_visits_visit_key_idx ON image_visits USING btree (visit_key);
--
-- Name: images_local_thumbname_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX images_local_thumbname_idx ON images USING btree (local_thumbname);
--
-- Name: images_md5sum_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX images_md5sum_idx ON images USING btree (md5sum);
--
-- Name: irc_lines_channel_time_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX irc_lines_channel_time_idx ON irc_lines USING btree (channel, "time");
--
-- Name: irc_lines_time_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX irc_lines_time_idx ON irc_lines USING btree ("time");
--
-- Name: rating_ratings_image_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX rating_ratings_image_id_idx ON rating_ratings USING btree (image_id);
--
-- PostgreSQL database dump complete
--