-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup.sql
More file actions
621 lines (416 loc) · 15.2 KB
/
backup.sql
File metadata and controls
621 lines (416 loc) · 15.2 KB
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
--
-- PostgreSQL database dump
--
\restrict yxvofxMZzG6CzzRgly8a41s6qXgeuZBR8gJ77HwXBnaNJlqPZEUAMwWunhx6gHV
-- Dumped from database version 15.14 (Debian 15.14-1.pgdg13+1)
-- Dumped by pg_dump version 15.14 (Debian 15.14-1.pgdg13+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: ar_internal_metadata; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.ar_internal_metadata (
key character varying NOT NULL,
value character varying,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
ALTER TABLE public.ar_internal_metadata OWNER TO postgres;
--
-- Name: chats; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.chats (
id bigint NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
user_id bigint NOT NULL,
room_id bigint NOT NULL,
content text NOT NULL
);
ALTER TABLE public.chats OWNER TO postgres;
--
-- Name: chats_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.chats_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.chats_id_seq OWNER TO postgres;
--
-- Name: chats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.chats_id_seq OWNED BY public.chats.id;
--
-- Name: comments; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.comments (
id bigint NOT NULL,
comments character varying,
post_id bigint,
user_id bigint,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
ALTER TABLE public.comments OWNER TO postgres;
--
-- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.comments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.comments_id_seq OWNER TO postgres;
--
-- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.comments_id_seq OWNED BY public.comments.id;
--
-- Name: likes; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.likes (
id bigint NOT NULL,
"like" integer,
post_id bigint,
user_id bigint,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
ALTER TABLE public.likes OWNER TO postgres;
--
-- Name: likes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.likes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.likes_id_seq OWNER TO postgres;
--
-- Name: likes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.likes_id_seq OWNED BY public.likes.id;
--
-- Name: posts; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.posts (
id bigint NOT NULL,
title character varying,
description character varying,
user_id bigint,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
ALTER TABLE public.posts OWNER TO postgres;
--
-- Name: posts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.posts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.posts_id_seq OWNER TO postgres;
--
-- Name: posts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.posts_id_seq OWNED BY public.posts.id;
--
-- Name: rooms; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.rooms (
id bigint NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
name character varying
);
ALTER TABLE public.rooms OWNER TO postgres;
--
-- Name: rooms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.rooms_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.rooms_id_seq OWNER TO postgres;
--
-- Name: rooms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.rooms_id_seq OWNED BY public.rooms.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.schema_migrations (
version character varying NOT NULL
);
ALTER TABLE public.schema_migrations OWNER TO postgres;
--
-- Name: users; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users (
id bigint NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp(6) without time zone,
remember_created_at timestamp(6) without time zone,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
login character varying,
room_id bigint
);
ALTER TABLE public.users OWNER TO postgres;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO postgres;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: chats id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.chats ALTER COLUMN id SET DEFAULT nextval('public.chats_id_seq'::regclass);
--
-- Name: comments id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.comments ALTER COLUMN id SET DEFAULT nextval('public.comments_id_seq'::regclass);
--
-- Name: likes id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.likes ALTER COLUMN id SET DEFAULT nextval('public.likes_id_seq'::regclass);
--
-- Name: posts id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.posts ALTER COLUMN id SET DEFAULT nextval('public.posts_id_seq'::regclass);
--
-- Name: rooms id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.rooms ALTER COLUMN id SET DEFAULT nextval('public.rooms_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: ar_internal_metadata; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.ar_internal_metadata (key, value, created_at, updated_at) FROM stdin;
environment development 2025-08-15 18:54:05.759778 2025-08-15 18:54:05.759782
schema_sha1 b8b97f55585b72e0cfbe83b0ce2bbecbe1c6f481 2025-08-15 18:54:05.772664 2025-08-15 18:54:05.772667
\.
--
-- Data for Name: chats; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.chats (id, created_at, updated_at, user_id, room_id, content) FROM stdin;
690 2025-10-07 15:03:47.134506 2025-10-07 15:03:47.134506 42 40 E aí, Junior! Tudo certo?
691 2025-10-07 15:04:00.779015 2025-10-07 15:04:00.779015 43 40 Opa, Pedro! Tudo sim e contigo?
692 2025-10-07 15:04:11.03165 2025-10-07 15:04:11.03165 42 40 Tranquilo também. Tava pensando aqui… bora marcar algo esse fim de semana?
693 2025-10-07 15:04:15.004455 2025-10-07 15:04:15.004455 43 40 Bora! Tava querendo sair mesmo. Alguma ideia?
694 2025-10-07 15:04:19.653965 2025-10-07 15:04:19.653965 42 40 Que tal um cinema no sábado? Tem aquele filme novo de ação que a gente tava esperando.
695 2025-10-07 15:04:23.737197 2025-10-07 15:04:23.737197 43 40 Boa! Que horas?
696 2025-10-07 15:04:28.197572 2025-10-07 15:04:28.197572 42 40 Umas 19h tá bom pra ti?
697 2025-10-07 15:04:32.347392 2025-10-07 15:04:32.347392 43 40 Fechou! A gente já janta por lá mesmo?
698 2025-10-07 15:04:37.222483 2025-10-07 15:04:37.222483 42 40 Melhor ainda. Já resolve tudo de uma vez haha
699 2025-10-07 15:04:42.113735 2025-10-07 15:04:42.113735 43 40 Demorou então! Vou ver os ingressos aqui e te aviso.
700 2025-10-07 15:04:58.748139 2025-10-07 15:04:58.748139 42 40 Fechadíssimo. Valeu, irmão!
701 2025-10-16 14:14:34.007209 2025-10-16 14:14:34.007209 44 41 olá
\.
--
-- Data for Name: comments; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.comments (id, comments, post_id, user_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: likes; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.likes (id, "like", post_id, user_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: posts; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.posts (id, title, description, user_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: rooms; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.rooms (id, created_at, updated_at, name) FROM stdin;
40 2025-10-06 17:10:05.294524 2025-10-06 17:10:05.294524 room 01
41 2025-10-06 17:10:15.180317 2025-10-06 17:10:15.180317 room 02
\.
--
-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.schema_migrations (version) FROM stdin;
20250114221049
20250113172316
20250112141801
20250112134733
20250112134313
20250815183312
20250815183444
20250815184404
20250818193238
20250818223843
20250825214527
20250825215126
20250825222359
20250930120831
20251006125831
20251006130017
20251006134028
\.
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.users (id, email, encrypted_password, reset_password_token, reset_password_sent_at, remember_created_at, created_at, updated_at, login, room_id) FROM stdin;
43 junior@hotmail.com $2a$12$XGq62wz4kBFVb2LvecX.v.49jFLjeY4wrMIriN35hsfj5eTXSFmhy \N \N \N 2025-10-06 17:11:31.686313 2025-10-07 15:01:48.312836 junior 40
42 pedro@hotmail.com $2a$12$wO1owwUr4yIHIahgAvjczejSqe502jKLggevbp0EgBv4bAa2NjsgG \N \N \N 2025-10-06 12:51:10.271502 2025-10-07 15:01:52.0819 pedro 40
44 marcia@hotmail.com $2a$12$uWI0ZzEoo96VTtQ.LD95WeYxIneE9lGJt.Gov0UA4SGt/QwYBXS6y \N \N \N 2025-10-16 14:14:13.633153 2025-10-16 14:14:28.378506 marciavaz 41
\.
--
-- Name: chats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.chats_id_seq', 701, true);
--
-- Name: comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.comments_id_seq', 1, false);
--
-- Name: likes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.likes_id_seq', 1, false);
--
-- Name: posts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.posts_id_seq', 1, false);
--
-- Name: rooms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.rooms_id_seq', 42, true);
--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.users_id_seq', 44, true);
--
-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.ar_internal_metadata
ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
--
-- Name: chats chats_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.chats
ADD CONSTRAINT chats_pkey PRIMARY KEY (id);
--
-- Name: comments comments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.comments
ADD CONSTRAINT comments_pkey PRIMARY KEY (id);
--
-- Name: likes likes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.likes
ADD CONSTRAINT likes_pkey PRIMARY KEY (id);
--
-- Name: posts posts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.posts
ADD CONSTRAINT posts_pkey PRIMARY KEY (id);
--
-- Name: rooms rooms_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.rooms
ADD CONSTRAINT rooms_pkey PRIMARY KEY (id);
--
-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.schema_migrations
ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: index_chats_on_room_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX index_chats_on_room_id ON public.chats USING btree (room_id);
--
-- Name: index_chats_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX index_chats_on_user_id ON public.chats USING btree (user_id);
--
-- Name: index_comments_on_post_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX index_comments_on_post_id ON public.comments USING btree (post_id);
--
-- Name: index_comments_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX index_comments_on_user_id ON public.comments USING btree (user_id);
--
-- Name: index_likes_on_post_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX index_likes_on_post_id ON public.likes USING btree (post_id);
--
-- Name: index_likes_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX index_likes_on_user_id ON public.likes USING btree (user_id);
--
-- Name: index_posts_on_user_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX index_posts_on_user_id ON public.posts USING btree (user_id);
--
-- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: postgres
--
CREATE UNIQUE INDEX index_users_on_email ON public.users USING btree (email);
--
-- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: postgres
--
CREATE UNIQUE INDEX index_users_on_reset_password_token ON public.users USING btree (reset_password_token);
--
-- Name: index_users_on_room_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX index_users_on_room_id ON public.users USING btree (room_id);
--
-- Name: chats fk_rails_d05dcb5af1; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.chats
ADD CONSTRAINT fk_rails_d05dcb5af1 FOREIGN KEY (room_id) REFERENCES public.rooms(id);
--
-- Name: chats fk_rails_e555f43151; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.chats
ADD CONSTRAINT fk_rails_e555f43151 FOREIGN KEY (user_id) REFERENCES public.users(id);
--
-- Name: users fk_rails_ec0e059914; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT fk_rails_ec0e059914 FOREIGN KEY (room_id) REFERENCES public.rooms(id) ON DELETE SET NULL;
--
-- PostgreSQL database dump complete
--
\unrestrict yxvofxMZzG6CzzRgly8a41s6qXgeuZBR8gJ77HwXBnaNJlqPZEUAMwWunhx6gHV