aboutsummaryrefslogtreecommitdiff
path: root/juick-common/src/main/resources/pg_schema_wip
blob: f947067890372d6c4357d6d847fe44507fbed06b (plain) (blame)
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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
--
-- PostgreSQL database dump
--

SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET escape_string_warning = off;

--
-- Name: juick; Type: SCHEMA; Schema: -; Owner: juick
--

CREATE SCHEMA juick;


ALTER SCHEMA juick OWNER TO juick;

--
-- 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;

--
-- Name: auth_protocol; Type: TYPE; Schema: public; Owner: juick
--

CREATE TYPE auth_protocol AS ENUM (
    'xmpp',
    'email',
    'sms'
);


ALTER TYPE auth_protocol OWNER TO juick;

--
-- Name: messages_attach; Type: TYPE; Schema: public; Owner: juick
--

CREATE TYPE messages_attach AS ENUM (
    'jpg',
    'mp4',
    'png'
);


ALTER TYPE messages_attach OWNER TO juick;

--
-- Name: messages_lang; Type: TYPE; Schema: public; Owner: juick
--

CREATE TYPE messages_lang AS ENUM (
    'en',
    'ru',
    'fr',
    'fa',
    '__'
);


ALTER TYPE messages_lang OWNER TO juick;

--
-- Name: replies_attach; Type: TYPE; Schema: public; Owner: juick
--

CREATE TYPE replies_attach AS ENUM (
    'jpg',
    'mp4',
    'png'
);


ALTER TYPE replies_attach OWNER TO juick;

--
-- Name: users_lang; Type: TYPE; Schema: public; Owner: juick
--

CREATE TYPE users_lang AS ENUM (
    'en',
    'ru',
    'fr',
    'fa',
    '__'
);


ALTER TYPE users_lang OWNER TO juick;

SET default_tablespace = '';

SET default_with_oids = false;

--
-- Name: ads_messages; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE ads_messages (
    message_id bigint NOT NULL
);


ALTER TABLE ads_messages OWNER TO juick;

--
-- Name: ads_messages_log; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE ads_messages_log (
    user_id bigint NOT NULL,
    message_id bigint NOT NULL,
    ts bigint DEFAULT 0::bigint NOT NULL
);


ALTER TABLE ads_messages_log OWNER TO juick;

--
-- Name: android; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE android (
    user_id bigint NOT NULL,
    regid character varying(255) NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL
);


ALTER TABLE android OWNER TO juick;

--
-- Name: auth; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE auth (
    user_id bigint NOT NULL,
    protocol auth_protocol NOT NULL,
    account character varying(64) NOT NULL,
    authcode character varying(8) NOT NULL
);


ALTER TABLE auth OWNER TO juick;

--
-- Name: bl_tags; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE bl_tags (
    user_id bigint NOT NULL,
    tag_id bigint NOT NULL
);


ALTER TABLE bl_tags OWNER TO juick;

--
-- Name: bl_users; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE bl_users (
    user_id bigint NOT NULL,
    bl_user_id bigint NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL
);


ALTER TABLE bl_users OWNER TO juick;

--
-- Name: captcha; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE captcha (
    jid character varying(64) NOT NULL,
    hash character varying(16) NOT NULL,
    confirmed smallint NOT NULL
);


ALTER TABLE captcha OWNER TO juick;

--
-- Name: captchaimg; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE captchaimg (
    id character varying(16) NOT NULL,
    txt character varying(6) NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL,
    ip character varying(16) NOT NULL
);


ALTER TABLE captchaimg OWNER TO juick;

--
-- Name: emails; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE emails (
    user_id bigint NOT NULL,
    email character varying(64) NOT NULL,
    subscr_hour smallint
);


ALTER TABLE emails OWNER TO juick;

--
-- Name: facebook; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE facebook (
    user_id bigint,
    fb_id numeric NOT NULL,
    loginhash character varying(36),
    access_token character varying(255),
    ts timestamp with time zone DEFAULT now() NOT NULL,
    fb_name character varying(64) NOT NULL,
    fb_link character varying(64) NOT NULL,
    crosspost boolean DEFAULT true NOT NULL
);


ALTER TABLE facebook OWNER TO juick;

--
-- Name: favorites; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE favorites (
    user_id bigint NOT NULL,
    message_id bigint NOT NULL,
    ts timestamp with time zone
);


ALTER TABLE favorites OWNER TO juick;

--
-- Name: friends_facebook; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE friends_facebook (
    user_id bigint NOT NULL,
    friend_id numeric NOT NULL
);


ALTER TABLE friends_facebook OWNER TO juick;

--
-- Name: images; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE images (
    mid bigint NOT NULL,
    rid bigint NOT NULL,
    thumb bigint NOT NULL,
    small bigint NOT NULL,
    medium bigint NOT NULL,
    height bigint NOT NULL,
    width bigint NOT NULL
);


ALTER TABLE images OWNER TO juick;

--
-- Name: ios; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE ios (
    user_id bigint NOT NULL,
    token character varying(64) NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL
);


ALTER TABLE ios OWNER TO juick;

--
-- Name: jids; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE jids (
    user_id bigint,
    jid character varying(64) NOT NULL,
    active smallint DEFAULT 0 NOT NULL,
    loginhash character varying(36),
    ts timestamp with time zone DEFAULT now() NOT NULL
);


ALTER TABLE jids OWNER TO juick;

--
-- Name: logins; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE logins (
    user_id bigint NOT NULL,
    hash character varying(16) NOT NULL
);


ALTER TABLE logins OWNER TO juick;

--
-- Name: mail; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE mail (
    user_id bigint NOT NULL,
    hash character varying(16) NOT NULL
);


ALTER TABLE mail OWNER TO juick;

--
-- Name: meon; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE meon (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    link character varying(255) NOT NULL,
    name character varying(32) NOT NULL,
    ico smallint
);


ALTER TABLE meon OWNER TO juick;

--
-- Name: meon_id_seq; Type: SEQUENCE; Schema: public; Owner: juick
--

CREATE SEQUENCE meon_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE meon_id_seq OWNER TO juick;

--
-- Name: meon_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: juick
--

ALTER SEQUENCE meon_id_seq OWNED BY meon.id;


--
-- Name: messages; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE messages (
    message_id bigint NOT NULL,
    user_id bigint NOT NULL,
    lang messages_lang DEFAULT '__'::messages_lang NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL,
    replies smallint DEFAULT 0::smallint NOT NULL,
    maxreplyid smallint DEFAULT 0::smallint NOT NULL,
    privacy smallint DEFAULT 1::smallint NOT NULL,
    readonly boolean DEFAULT false NOT NULL,
    attach messages_attach,
    place_id bigint,
    lat numeric(10,7),
    lon numeric(10,7),
    popular smallint DEFAULT 0::smallint NOT NULL,
    hidden smallint DEFAULT 0::smallint NOT NULL,
    likes smallint DEFAULT 0::smallint NOT NULL
);


ALTER TABLE messages OWNER TO juick;

--
-- Name: messages_access; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE messages_access (
    message_id bigint NOT NULL,
    user_id bigint NOT NULL
);


ALTER TABLE messages_access OWNER TO juick;

--
-- Name: messages_message_id_seq; Type: SEQUENCE; Schema: public; Owner: juick
--

CREATE SEQUENCE messages_message_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE messages_message_id_seq OWNER TO juick;

--
-- Name: messages_message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: juick
--

ALTER SEQUENCE messages_message_id_seq OWNED BY messages.message_id;


--
-- Name: messages_tags; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE messages_tags (
    message_id bigint NOT NULL,
    tag_id bigint NOT NULL
);


ALTER TABLE messages_tags OWNER TO juick;

--
-- Name: messages_txt; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE messages_txt (
    message_id bigint NOT NULL,
    tags text,
    repliesby text,
    txt text NOT NULL
);


ALTER TABLE messages_txt OWNER TO juick;

--
-- Name: messages_votes; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE messages_votes (
    message_id bigint NOT NULL,
    user_id bigint NOT NULL,
    vote smallint DEFAULT 1::smallint NOT NULL
);


ALTER TABLE messages_votes OWNER TO juick;

--
-- Name: places; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE places (
    place_id bigint NOT NULL,
    lat numeric(10,7) NOT NULL,
    lon numeric(10,7) NOT NULL,
    name character varying(64) NOT NULL,
    descr character varying(255),
    url character varying(128),
    user_id bigint NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL
);


ALTER TABLE places OWNER TO juick;

--
-- Name: places_place_id_seq; Type: SEQUENCE; Schema: public; Owner: juick
--

CREATE SEQUENCE places_place_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE places_place_id_seq OWNER TO juick;

--
-- Name: places_place_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: juick
--

ALTER SEQUENCE places_place_id_seq OWNED BY places.place_id;


--
-- Name: places_tags; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE places_tags (
    place_id bigint NOT NULL,
    tag_id bigint NOT NULL
);


ALTER TABLE places_tags OWNER TO juick;

--
-- Name: pm; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE pm (
    user_id bigint NOT NULL,
    user_id_to bigint NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL,
    txt text NOT NULL
);


ALTER TABLE pm OWNER TO juick;

--
-- Name: pm_inroster; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE pm_inroster (
    user_id bigint NOT NULL,
    jid character varying(64) NOT NULL
);


ALTER TABLE pm_inroster OWNER TO juick;

--
-- Name: pm_streams; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE pm_streams (
    user_id bigint NOT NULL,
    user_id_to bigint NOT NULL,
    lastmessage timestamp with time zone NOT NULL,
    lastview timestamp with time zone,
    unread smallint DEFAULT 0::smallint NOT NULL
);


ALTER TABLE pm_streams OWNER TO juick;

--
-- Name: presence; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE presence (
    user_id bigint NOT NULL,
    jid character varying(64),
    ts timestamp with time zone DEFAULT now() NOT NULL
);


ALTER TABLE presence OWNER TO juick;

--
-- Name: reader_links; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE reader_links (
    link_id bigint NOT NULL,
    rss_id bigint NOT NULL,
    url character varying(255) NOT NULL,
    title character varying(255) NOT NULL,
    ts timestamp with time zone NOT NULL
);


ALTER TABLE reader_links OWNER TO juick;

--
-- Name: reader_links_link_id_seq; Type: SEQUENCE; Schema: public; Owner: juick
--

CREATE SEQUENCE reader_links_link_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE reader_links_link_id_seq OWNER TO juick;

--
-- Name: reader_links_link_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: juick
--

ALTER SEQUENCE reader_links_link_id_seq OWNED BY reader_links.link_id;


--
-- Name: reader_rss; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE reader_rss (
    rss_id bigint NOT NULL,
    url character varying(255) NOT NULL,
    lastcheck timestamp with time zone NOT NULL
);


ALTER TABLE reader_rss OWNER TO juick;

--
-- Name: reader_rss_rss_id_seq; Type: SEQUENCE; Schema: public; Owner: juick
--

CREATE SEQUENCE reader_rss_rss_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE reader_rss_rss_id_seq OWNER TO juick;

--
-- Name: reader_rss_rss_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: juick
--

ALTER SEQUENCE reader_rss_rss_id_seq OWNED BY reader_rss.rss_id;


--
-- Name: replies; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE replies (
    message_id bigint NOT NULL,
    reply_id smallint NOT NULL,
    user_id bigint NOT NULL,
    replyto smallint DEFAULT 0::smallint NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL,
    attach replies_attach,
    txt text NOT NULL
);


ALTER TABLE replies OWNER TO juick;

--
-- Name: sphinx; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE sphinx (
    counter_id smallint NOT NULL,
    max_id bigint NOT NULL
);


ALTER TABLE sphinx OWNER TO juick;

--
-- Name: subscr_messages; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE subscr_messages (
    message_id bigint NOT NULL,
    suser_id bigint NOT NULL
);


ALTER TABLE subscr_messages OWNER TO juick;

--
-- Name: subscr_tags; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE subscr_tags (
    tag_id bigint NOT NULL,
    suser_id bigint NOT NULL,
    jid character varying(64) NOT NULL,
    active boolean NOT NULL
);


ALTER TABLE subscr_tags OWNER TO juick;

--
-- Name: subscr_users; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE subscr_users (
    user_id bigint NOT NULL,
    suser_id bigint NOT NULL,
    jid character varying(64),
    active boolean NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL
);


ALTER TABLE subscr_users OWNER TO juick;

--
-- Name: tags; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE tags (
    tag_id bigint NOT NULL,
    synonym_id bigint,
    name character varying(70),
    top boolean DEFAULT false NOT NULL,
    noindex boolean DEFAULT false NOT NULL,
    stat_messages bigint DEFAULT 0::bigint NOT NULL,
    stat_users smallint DEFAULT 0::smallint NOT NULL
);


ALTER TABLE tags OWNER TO juick;

--
-- Name: tags_ignore; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE tags_ignore (
    tag_id bigint NOT NULL
);


ALTER TABLE tags_ignore OWNER TO juick;

--
-- Name: tags_synonyms; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE tags_synonyms (
    name character varying(64) NOT NULL,
    changeto character varying(64) NOT NULL
);


ALTER TABLE tags_synonyms OWNER TO juick;

--
-- Name: tags_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: juick
--

CREATE SEQUENCE tags_tag_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE tags_tag_id_seq OWNER TO juick;

--
-- Name: tags_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: juick
--

ALTER SEQUENCE tags_tag_id_seq OWNED BY tags.tag_id;


--
-- Name: telegram; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE telegram (
    user_id bigint,
    tg_id numeric NOT NULL,
    tg_name character varying(64) NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL,
    loginhash character varying(36)
);


ALTER TABLE telegram OWNER TO juick;

--
-- Name: telegram_chats; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE telegram_chats (
    chat_id numeric
);


ALTER TABLE telegram_chats OWNER TO juick;

--
-- Name: top_ignore_messages; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE top_ignore_messages (
    message_id bigint NOT NULL
);


ALTER TABLE top_ignore_messages OWNER TO juick;

--
-- Name: top_ignore_tags; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE top_ignore_tags (
    tag_id bigint NOT NULL
);


ALTER TABLE top_ignore_tags OWNER TO juick;

--
-- Name: top_ignore_users; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE top_ignore_users (
    user_id bigint NOT NULL
);


ALTER TABLE top_ignore_users OWNER TO juick;

--
-- Name: twitter; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE twitter (
    user_id bigint NOT NULL,
    access_token character varying(64) NOT NULL,
    access_token_secret character varying(64) NOT NULL,
    uname character varying(64) NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL,
    crosspost boolean DEFAULT true NOT NULL
);


ALTER TABLE twitter OWNER TO juick;

--
-- Name: useroptions; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE useroptions (
    user_id bigint NOT NULL,
    jnotify boolean DEFAULT true NOT NULL,
    subscr_active boolean DEFAULT true NOT NULL,
    off_ts timestamp with time zone,
    xmppxhtml boolean DEFAULT false NOT NULL,
    subscr_notify boolean DEFAULT true NOT NULL,
    recommendations boolean DEFAULT true NOT NULL,
    privacy_view boolean DEFAULT true NOT NULL,
    privacy_reply boolean DEFAULT true NOT NULL,
    privacy_pm boolean DEFAULT true NOT NULL,
    repliesview boolean DEFAULT false NOT NULL
);


ALTER TABLE useroptions OWNER TO juick;

--
-- Name: users; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE users (
    id bigint NOT NULL,
    nick character varying(64) NOT NULL,
    passw character varying(32) NOT NULL,
    lang users_lang DEFAULT '__'::users_lang NOT NULL,
    banned smallint DEFAULT 0::smallint NOT NULL,
    lastmessage bigint DEFAULT 0::bigint NOT NULL,
    lastpm bigint DEFAULT 0::bigint NOT NULL,
    lastphoto bigint DEFAULT 0::bigint NOT NULL,
    karma smallint DEFAULT 0::smallint NOT NULL
);


ALTER TABLE users OWNER TO juick;

--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: juick
--

CREATE SEQUENCE users_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE users_id_seq OWNER TO juick;

--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: juick
--

ALTER SEQUENCE users_id_seq OWNED BY users.id;


--
-- Name: users_refs; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE users_refs (
    user_id bigint NOT NULL,
    ref bigint NOT NULL
);


ALTER TABLE users_refs OWNER TO juick;

--
-- Name: users_subscr; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE users_subscr (
    user_id bigint NOT NULL,
    cnt smallint DEFAULT 0::smallint NOT NULL
);


ALTER TABLE users_subscr OWNER TO juick;

--
-- Name: usersinfo; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE usersinfo (
    user_id bigint NOT NULL,
    jid character varying(32),
    fullname character varying(32),
    country character varying(32),
    url character varying(64),
    gender character varying(32),
    bday character varying(10),
    descr text
);


ALTER TABLE usersinfo OWNER TO juick;

--
-- Name: version; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE version (
    version numeric NOT NULL
);


ALTER TABLE version OWNER TO juick;

--
-- Name: vk; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE vk (
    user_id bigint,
    vk_id numeric NOT NULL,
    loginhash character varying(36),
    access_token character varying(128) NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL,
    vk_name character varying(64) NOT NULL,
    vk_link character varying(64) NOT NULL,
    crosspost smallint DEFAULT 1::smallint NOT NULL
);


ALTER TABLE vk OWNER TO juick;

--
-- Name: winphone; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE winphone (
    user_id bigint NOT NULL,
    url character varying(255) NOT NULL,
    ts timestamp with time zone DEFAULT now() NOT NULL
);


ALTER TABLE winphone OWNER TO juick;

--
-- Name: wl_users; Type: TABLE; Schema: public; Owner: juick; Tablespace: 
--

CREATE TABLE wl_users (
    user_id bigint NOT NULL,
    wl_user_id bigint NOT NULL
);


ALTER TABLE wl_users OWNER TO juick;

--
-- Name: id; Type: DEFAULT; Schema: public; Owner: juick
--

ALTER TABLE ONLY meon ALTER COLUMN id SET DEFAULT nextval('meon_id_seq'::regclass);


--
-- Name: message_id; Type: DEFAULT; Schema: public; Owner: juick
--

ALTER TABLE ONLY messages ALTER COLUMN message_id SET DEFAULT nextval('messages_message_id_seq'::regclass);


--
-- Name: place_id; Type: DEFAULT; Schema: public; Owner: juick
--

ALTER TABLE ONLY places ALTER COLUMN place_id SET DEFAULT nextval('places_place_id_seq'::regclass);


--
-- Name: link_id; Type: DEFAULT; Schema: public; Owner: juick
--

ALTER TABLE ONLY reader_links ALTER COLUMN link_id SET DEFAULT nextval('reader_links_link_id_seq'::regclass);


--
-- Name: rss_id; Type: DEFAULT; Schema: public; Owner: juick
--

ALTER TABLE ONLY reader_rss ALTER COLUMN rss_id SET DEFAULT nextval('reader_rss_rss_id_seq'::regclass);


--
-- Name: tag_id; Type: DEFAULT; Schema: public; Owner: juick
--

ALTER TABLE ONLY tags ALTER COLUMN tag_id SET DEFAULT nextval('tags_tag_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: juick
--

ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);


--
-- Name: idx_20438_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY images
    ADD CONSTRAINT idx_20438_primary PRIMARY KEY (mid, rid);


--
-- Name: idx_20453_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY mail
    ADD CONSTRAINT idx_20453_primary PRIMARY KEY (user_id);


--
-- Name: idx_20458_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY meon
    ADD CONSTRAINT idx_20458_primary PRIMARY KEY (id);


--
-- Name: idx_20483_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY messages
    ADD CONSTRAINT idx_20483_primary PRIMARY KEY (message_id);


--
-- Name: idx_20502_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY messages_txt
    ADD CONSTRAINT idx_20502_primary PRIMARY KEY (message_id);


--
-- Name: idx_20514_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY places
    ADD CONSTRAINT idx_20514_primary PRIMARY KEY (place_id);


--
-- Name: idx_20542_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY reader_links
    ADD CONSTRAINT idx_20542_primary PRIMARY KEY (link_id);


--
-- Name: idx_20551_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY reader_rss
    ADD CONSTRAINT idx_20551_primary PRIMARY KEY (rss_id);


--
-- Name: idx_20571_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY sphinx
    ADD CONSTRAINT idx_20571_primary PRIMARY KEY (counter_id);


--
-- Name: idx_20586_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY tags
    ADD CONSTRAINT idx_20586_primary PRIMARY KEY (tag_id);


--
-- Name: idx_20616_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY top_ignore_tags
    ADD CONSTRAINT idx_20616_primary PRIMARY KEY (tag_id);


--
-- Name: idx_20619_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY top_ignore_users
    ADD CONSTRAINT idx_20619_primary PRIMARY KEY (user_id);


--
-- Name: idx_20622_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY twitter
    ADD CONSTRAINT idx_20622_primary PRIMARY KEY (user_id);


--
-- Name: idx_20627_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY useroptions
    ADD CONSTRAINT idx_20627_primary PRIMARY KEY (user_id);


--
-- Name: idx_20653_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY users
    ADD CONSTRAINT idx_20653_primary PRIMARY KEY (id);


--
-- Name: idx_20663_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY usersinfo
    ADD CONSTRAINT idx_20663_primary PRIMARY KEY (user_id);


--
-- Name: idx_20672_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY users_subscr
    ADD CONSTRAINT idx_20672_primary PRIMARY KEY (user_id);


--
-- Name: idx_20694_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY wl_users
    ADD CONSTRAINT idx_20694_primary PRIMARY KEY (user_id, wl_user_id);


--
-- Name: idx_29418_primary; Type: CONSTRAINT; Schema: public; Owner: juick; Tablespace: 
--

ALTER TABLE ONLY bl_users
    ADD CONSTRAINT idx_29418_primary PRIMARY KEY (user_id, bl_user_id);


--
-- Name: idx_20390_regid; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20390_regid ON android USING btree (regid);


--
-- Name: idx_20390_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20390_user_id ON android USING btree (user_id);


--
-- Name: idx_20404_tag_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20404_tag_id ON bl_tags USING btree (tag_id);


--
-- Name: idx_20404_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20404_user_id ON bl_tags USING btree (user_id);


--
-- Name: idx_20418_email; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20418_email ON emails USING btree (email);


--
-- Name: idx_20421_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20421_user_id ON facebook USING btree (user_id);


--
-- Name: idx_20432_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20432_user_id ON friends_facebook USING btree (user_id, friend_id);


--
-- Name: idx_20441_token; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20441_token ON ios USING btree (token);


--
-- Name: idx_20441_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20441_user_id ON ios USING btree (user_id);


--
-- Name: idx_20445_jid; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20445_jid ON jids USING btree (jid);


--
-- Name: idx_20445_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20445_user_id ON jids USING btree (user_id);


--
-- Name: idx_20450_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20450_user_id ON logins USING btree (user_id);


--
-- Name: idx_20483_attach; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20483_attach ON messages USING btree (attach);


--
-- Name: idx_20483_hidden; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20483_hidden ON messages USING btree (hidden);


--
-- Name: idx_20483_place_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20483_place_id ON messages USING btree (place_id);


--
-- Name: idx_20483_popular; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20483_popular ON messages USING btree (popular);


--
-- Name: idx_20483_ts; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20483_ts ON messages USING btree (ts);


--
-- Name: idx_20483_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20483_user_id ON messages USING btree (user_id);


--
-- Name: idx_20496_message_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20496_message_id ON messages_access USING btree (message_id);


--
-- Name: idx_20499_message_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20499_message_id ON messages_tags USING btree (message_id);


--
-- Name: idx_20499_message_id_2; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20499_message_id_2 ON messages_tags USING btree (message_id, tag_id);


--
-- Name: idx_20499_tag_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20499_tag_id ON messages_tags USING btree (tag_id);


--
-- Name: idx_20508_message_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20508_message_id ON messages_votes USING btree (message_id, user_id);


--
-- Name: idx_20529_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20529_user_id ON pm_inroster USING btree (user_id);


--
-- Name: idx_20529_user_id_2; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20529_user_id_2 ON pm_inroster USING btree (user_id, jid);


--
-- Name: idx_20532_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20532_user_id ON pm_streams USING btree (user_id, user_id_to);


--
-- Name: idx_20536_jid; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20536_jid ON presence USING btree (jid);


--
-- Name: idx_20563_message_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20563_message_id ON replies USING btree (message_id);


--
-- Name: idx_20563_ts; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20563_ts ON replies USING btree (ts);


--
-- Name: idx_20563_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20563_user_id ON replies USING btree (user_id);


--
-- Name: idx_20574_message_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20574_message_id ON subscr_messages USING btree (message_id, suser_id);


--
-- Name: idx_20577_tag_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20577_tag_id ON subscr_tags USING btree (tag_id, suser_id);


--
-- Name: idx_20580_suser_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20580_suser_id ON subscr_users USING btree (suser_id);


--
-- Name: idx_20580_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20580_user_id ON subscr_users USING btree (user_id, suser_id);


--
-- Name: idx_20586_synonym_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20586_synonym_id ON tags USING btree (synonym_id);


--
-- Name: idx_20607_chat_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20607_chat_id ON telegram_chats USING btree (chat_id);


--
-- Name: idx_20627_recommendations; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20627_recommendations ON useroptions USING btree (recommendations);


--
-- Name: idx_20653_nick; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20653_nick ON users USING btree (nick);


--
-- Name: idx_20669_ref; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20669_ref ON users_refs USING btree (ref);


--
-- Name: idx_20682_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20682_user_id ON vk USING btree (user_id);


--
-- Name: idx_20690_url; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_20690_url ON winphone USING btree (url);


--
-- Name: idx_20690_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_20690_user_id ON winphone USING btree (user_id);


--
-- Name: idx_29422_message_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_29422_message_id ON favorites USING btree (message_id);


--
-- Name: idx_29422_user_id; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE INDEX idx_29422_user_id ON favorites USING btree (user_id);


--
-- Name: idx_29422_user_id_2; Type: INDEX; Schema: public; Owner: juick; Tablespace: 
--

CREATE UNIQUE INDEX idx_29422_user_id_2 ON favorites USING btree (user_id, message_id);


--
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--

REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;


--
-- PostgreSQL database dump complete
--