-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathschema.sql
429 lines (293 loc) · 9.23 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
--
-- PostgreSQL database dump
--
-- Dumped from database version 15.2 (Debian 15.2-1.pgdg110+1)
-- Dumped by pg_dump version 15.2 (Debian 15.2-1.pgdg110+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: api; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.api (
chat_id text,
hash text
);
ALTER TABLE public.api OWNER TO docker;
--
-- Name: bad_feeds_id_seq; Type: SEQUENCE; Schema: public; Owner: docker
--
CREATE SEQUENCE public.bad_feeds_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.bad_feeds_id_seq OWNER TO docker;
--
-- Name: bad_feeds; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.bad_feeds (
id integer DEFAULT nextval('public.bad_feeds_id_seq'::regclass) NOT NULL,
url text NOT NULL,
comment text,
chat_id text,
date timestamp with time zone DEFAULT now()
);
ALTER TABLE public.bad_feeds OWNER TO docker;
--
-- Name: feed_items; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.feed_items (
id integer NOT NULL,
feed_id integer NOT NULL,
guid text NOT NULL,
title text NOT NULL,
url text NOT NULL,
date timestamp with time zone NOT NULL
);
ALTER TABLE public.feed_items OWNER TO docker;
--
-- Name: feed_items2_id_seq; Type: SEQUENCE; Schema: public; Owner: docker
--
CREATE SEQUENCE public.feed_items2_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.feed_items2_id_seq OWNER TO docker;
--
-- Name: feed_items2_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: docker
--
ALTER SEQUENCE public.feed_items2_id_seq OWNED BY public.feed_items.id;
--
-- Name: feeds; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.feeds (
id integer NOT NULL,
url text NOT NULL,
title text NOT NULL,
last_update_time timestamp with time zone NOT NULL,
next_update_time timestamp with time zone NOT NULL,
most_recent_item timestamp with time zone NOT NULL
);
ALTER TABLE public.feeds OWNER TO docker;
--
-- Name: feeds2_id_seq; Type: SEQUENCE; Schema: public; Owner: docker
--
CREATE SEQUENCE public.feeds2_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.feeds2_id_seq OWNER TO docker;
--
-- Name: feeds2_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: docker
--
ALTER SEQUENCE public.feeds2_id_seq OWNED BY public.feeds.id;
--
-- Name: message_log; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.message_log (
id integer NOT NULL,
chat_id text,
message text,
dt timestamp with time zone,
response_time real
);
ALTER TABLE public.message_log OWNER TO docker;
--
-- Name: message_log_id_seq; Type: SEQUENCE; Schema: public; Owner: docker
--
CREATE SEQUENCE public.message_log_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.message_log_id_seq OWNER TO docker;
--
-- Name: message_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: docker
--
ALTER SEQUENCE public.message_log_id_seq OWNED BY public.message_log.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.users (
chat_id text NOT NULL,
lang text,
username text,
first_name text
);
ALTER TABLE public.users OWNER TO docker;
--
-- Name: message_log_view; Type: VIEW; Schema: public; Owner: docker
--
CREATE VIEW public.message_log_view AS
SELECT message_log.chat_id,
users.username,
message_log.message
FROM (public.message_log
JOIN public.users ON ((message_log.chat_id = users.chat_id)))
WHERE (users.username <> 'nikstar'::text)
ORDER BY message_log.dt;
ALTER TABLE public.message_log_view OWNER TO docker;
--
-- Name: subscriptions; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.subscriptions (
id integer NOT NULL,
chat_id text NOT NULL,
last_sent timestamp with time zone NOT NULL,
active boolean DEFAULT true NOT NULL,
feed_id integer NOT NULL
);
ALTER TABLE public.subscriptions OWNER TO docker;
--
-- Name: subscriptions_view; Type: VIEW; Schema: public; Owner: docker
--
CREATE VIEW public.subscriptions_view AS
SELECT s.id,
s.chat_id AS user_id,
u.username,
u.first_name,
s.feed_id,
f.url,
s.last_sent,
s.active
FROM ((public.subscriptions s
JOIN public.users u ON ((s.chat_id = u.chat_id)))
JOIN public.feeds f ON ((s.feed_id = f.id)));
ALTER TABLE public.subscriptions_view OWNER TO docker;
--
-- Name: telegraf_session; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.telegraf_session (
id character varying,
session character varying
);
ALTER TABLE public.telegraf_session OWNER TO docker;
--
-- Name: unsubscriptions; Type: TABLE; Schema: public; Owner: docker
--
CREATE TABLE public.unsubscriptions (
chat_id text,
msg_id bigint,
subscription_id integer,
dt timestamp with time zone DEFAULT now()
);
ALTER TABLE public.unsubscriptions OWNER TO docker;
--
-- Name: untitled_table_179_id_seq; Type: SEQUENCE; Schema: public; Owner: docker
--
CREATE SEQUENCE public.untitled_table_179_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.untitled_table_179_id_seq OWNER TO docker;
--
-- Name: untitled_table_179_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: docker
--
ALTER SEQUENCE public.untitled_table_179_id_seq OWNED BY public.subscriptions.id;
--
-- Name: feed_items id; Type: DEFAULT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.feed_items ALTER COLUMN id SET DEFAULT nextval('public.feed_items2_id_seq'::regclass);
--
-- Name: feeds id; Type: DEFAULT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.feeds ALTER COLUMN id SET DEFAULT nextval('public.feeds2_id_seq'::regclass);
--
-- Name: message_log id; Type: DEFAULT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.message_log ALTER COLUMN id SET DEFAULT nextval('public.message_log_id_seq'::regclass);
--
-- Name: subscriptions id; Type: DEFAULT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.subscriptions ALTER COLUMN id SET DEFAULT nextval('public.untitled_table_179_id_seq'::regclass);
--
-- Name: api api_chat_id_unique; Type: CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.api
ADD CONSTRAINT api_chat_id_unique UNIQUE (chat_id);
--
-- Name: bad_feeds bad_feeds_pkey; Type: CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.bad_feeds
ADD CONSTRAINT bad_feeds_pkey PRIMARY KEY (id);
--
-- Name: feed_items feed_items2_pkey; Type: CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.feed_items
ADD CONSTRAINT feed_items2_pkey PRIMARY KEY (id);
--
-- Name: feeds feeds_pkey; Type: CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.feeds
ADD CONSTRAINT feeds_pkey PRIMARY KEY (id);
--
-- Name: message_log message_log_pkey; Type: CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.message_log
ADD CONSTRAINT message_log_pkey PRIMARY KEY (id);
--
-- Name: subscriptions subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.subscriptions
ADD CONSTRAINT subscriptions_pkey PRIMARY KEY (id);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (chat_id);
--
-- Name: feed_items2_unique; Type: INDEX; Schema: public; Owner: docker
--
CREATE UNIQUE INDEX feed_items2_unique ON public.feed_items USING btree (feed_id, guid);
--
-- Name: feeds_unique_url; Type: INDEX; Schema: public; Owner: docker
--
CREATE UNIQUE INDEX feeds_unique_url ON public.feeds USING btree (url);
--
-- Name: subscriptions_unique_user_feed; Type: INDEX; Schema: public; Owner: docker
--
CREATE UNIQUE INDEX subscriptions_unique_user_feed ON public.subscriptions USING btree (chat_id, feed_id);
--
-- Name: feed_items feed_items2_feed_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.feed_items
ADD CONSTRAINT feed_items2_feed_id_fkey FOREIGN KEY (feed_id) REFERENCES public.feeds(id);
--
-- Name: subscriptions subscriptions_feed_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.subscriptions
ADD CONSTRAINT subscriptions_feed_id_fkey FOREIGN KEY (feed_id) REFERENCES public.feeds(id);
--
-- Name: subscriptions untitled_table_179_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: docker
--
ALTER TABLE ONLY public.subscriptions
ADD CONSTRAINT untitled_table_179_user_fkey FOREIGN KEY (chat_id) REFERENCES public.users(chat_id);
--
-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: pg_database_owner
--
GRANT USAGE ON SCHEMA public TO docker;
--
-- PostgreSQL database dump complete
--