-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstructure.sql
2986 lines (2175 loc) · 71.4 KB
/
structure.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
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
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;
--
-- Name: versions_partitions; Type: SCHEMA; Schema: -; Owner: -
--
CREATE SCHEMA versions_partitions;
--
-- Name: always_fail_on_insert(text); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION public.always_fail_on_insert(table_name text) RETURNS boolean
LANGUAGE plpgsql
AS $$
BEGIN
RAISE EXCEPTION 'partitioned table "%" does not support direct inserts, you should be inserting directly into child tables', table_name;
RETURN false;
END;
$$;
--
-- Name: dynamic_annotation_fields_value(character varying, text); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION public.dynamic_annotation_fields_value(field_name character varying, value text) RETURNS text
LANGUAGE plpgsql IMMUTABLE
AS $$
DECLARE
dynamic_field_value TEXT;
BEGIN
IF field_name = 'external_id' OR field_name = 'smooch_user_id' OR field_name = 'verification_status_status'
THEN
SELECT value INTO dynamic_field_value;
ELSE
SELECT NULL INTO dynamic_field_value;
END IF;
RETURN dynamic_field_value;
END;
$$;
--
-- Name: task_fieldset(text, text); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION public.task_fieldset(annotation_type text, data text) RETURNS text
LANGUAGE plpgsql IMMUTABLE
AS $_$
DECLARE
fieldset TEXT;
BEGIN
IF annotation_type = 'task' AND data LIKE '%fieldset: %'
THEN
SELECT REGEXP_REPLACE(data, '^.*fieldset: ([0-9a-z_]+).*$', '\1') INTO fieldset;
ELSE
SELECT NULL INTO fieldset;
END IF;
RETURN fieldset;
END;
$_$;
--
-- Name: task_team_task_id(text, text); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION public.task_team_task_id(annotation_type text, data text) RETURNS integer
LANGUAGE plpgsql IMMUTABLE
AS $_$
DECLARE
team_task_id INTEGER;
BEGIN
IF annotation_type = 'task' AND data LIKE '%team_task_id: %'
THEN
SELECT REGEXP_REPLACE(data, '^.*team_task_id: ([0-9]+).*$', '\1')::int INTO team_task_id;
ELSE
SELECT NULL INTO team_task_id;
END IF;
RETURN team_task_id;
END;
$_$;
--
-- Name: version_annotation_type(text, text); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION public.version_annotation_type(event_type text, object_after text) RETURNS text
LANGUAGE plpgsql IMMUTABLE
AS $_$
DECLARE
name TEXT;
BEGIN
IF event_type = 'create_dynamic' OR event_type = 'update_dynamic'
THEN
SELECT REGEXP_REPLACE(object_after, '^.*annotation_type":"([^"]+).*$', '\1') INTO name;
ELSE
SELECT '' INTO name;
END IF;
RETURN name;
END;
$_$;
--
-- Name: version_field_name(text, text); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION public.version_field_name(event_type text, object_after text) RETURNS text
LANGUAGE plpgsql IMMUTABLE
AS $_$
DECLARE
name TEXT;
BEGIN
IF event_type = 'create_dynamicannotationfield' OR event_type = 'update_dynamicannotationfield'
THEN
SELECT REGEXP_REPLACE(object_after, '^.*field_name":"([^"]+).*$', '\1') INTO name;
ELSE
SELECT '' INTO name;
END IF;
RETURN name;
END;
$_$;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: account_sources; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.account_sources (
id integer NOT NULL,
account_id integer,
source_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: account_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.account_sources_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: account_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.account_sources_id_seq OWNED BY public.account_sources.id;
--
-- Name: accounts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.accounts (
id integer NOT NULL,
user_id integer,
url character varying,
omniauth_info text,
uid character varying,
provider character varying,
token character varying,
email character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
team_id integer
);
--
-- Name: accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.accounts_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.accounts_id_seq OWNED BY public.accounts.id;
--
-- Name: annotations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.annotations (
id integer NOT NULL,
annotation_type character varying NOT NULL,
version_index integer,
annotated_type character varying,
annotated_id integer,
annotator_type character varying,
annotator_id integer,
entities text,
data text,
created_at timestamp without time zone,
updated_at timestamp without time zone,
file character varying,
attribution text,
lock_version integer DEFAULT 0 NOT NULL,
locked boolean DEFAULT false,
fragment text
);
--
-- Name: annotations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.annotations_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: annotations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.annotations_id_seq OWNED BY public.annotations.id;
--
-- Name: api_keys; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.api_keys (
id integer NOT NULL,
access_token character varying DEFAULT ''::character varying NOT NULL,
expire_at timestamp without time zone,
created_at timestamp without time zone,
updated_at timestamp without time zone,
application character varying
);
--
-- Name: api_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.api_keys_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: api_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.api_keys_id_seq OWNED BY public.api_keys.id;
--
-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.ar_internal_metadata (
key character varying NOT NULL,
value character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: assignments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.assignments (
id integer NOT NULL,
assigned_id integer NOT NULL,
user_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
assigned_type character varying,
assigner_id integer,
message text
);
--
-- Name: assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.assignments_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.assignments_id_seq OWNED BY public.assignments.id;
--
-- Name: bot_resources; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.bot_resources (
id integer NOT NULL,
uuid character varying DEFAULT ''::character varying NOT NULL,
title character varying DEFAULT ''::character varying NOT NULL,
content character varying DEFAULT ''::character varying NOT NULL,
feed_url character varying,
number_of_articles integer DEFAULT 3,
team_id integer,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
--
-- Name: bot_resources_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.bot_resources_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: bot_resources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.bot_resources_id_seq OWNED BY public.bot_resources.id;
--
-- Name: bounces; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.bounces (
id integer NOT NULL,
email character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: bounces_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.bounces_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: bounces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.bounces_id_seq OWNED BY public.bounces.id;
--
-- Name: claim_descriptions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.claim_descriptions (
id bigint NOT NULL,
description text,
user_id bigint NOT NULL,
project_media_id bigint NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
context text
);
--
-- Name: claim_descriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.claim_descriptions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: claim_descriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.claim_descriptions_id_seq OWNED BY public.claim_descriptions.id;
--
-- Name: clusters; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.clusters (
id bigint NOT NULL,
project_medias_count integer DEFAULT 0,
project_media_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
first_item_at timestamp without time zone,
last_item_at timestamp without time zone
);
--
-- Name: clusters_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.clusters_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: clusters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.clusters_id_seq OWNED BY public.clusters.id;
--
-- Name: dynamic_annotation_annotation_types; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.dynamic_annotation_annotation_types (
annotation_type character varying NOT NULL,
label character varying NOT NULL,
description text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
singleton boolean DEFAULT true,
json_schema jsonb
);
--
-- Name: dynamic_annotation_field_instances; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.dynamic_annotation_field_instances (
name character varying NOT NULL,
field_type character varying NOT NULL,
annotation_type character varying NOT NULL,
label character varying NOT NULL,
description text,
optional boolean DEFAULT true,
settings text,
default_value character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: dynamic_annotation_field_types; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.dynamic_annotation_field_types (
field_type character varying NOT NULL,
label character varying NOT NULL,
description text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: dynamic_annotation_fields; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.dynamic_annotation_fields (
id integer NOT NULL,
annotation_id integer NOT NULL,
field_name character varying NOT NULL,
annotation_type character varying NOT NULL,
field_type character varying NOT NULL,
value text NOT NULL,
value_json jsonb DEFAULT '"{}"'::jsonb,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: fact_checks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.fact_checks (
id bigint NOT NULL,
summary text NOT NULL,
url character varying,
title character varying NOT NULL,
user_id bigint NOT NULL,
claim_description_id bigint NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: fact_checks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.fact_checks_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: fact_checks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.fact_checks_id_seq OWNED BY public.fact_checks.id;
--
-- Name: login_activities; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.login_activities (
id integer NOT NULL,
scope character varying,
strategy character varying,
identity character varying,
success boolean,
failure_reason character varying,
user_type character varying,
user_id integer,
context character varying,
ip character varying,
user_agent text,
referrer text,
created_at timestamp without time zone
);
--
-- Name: login_activities_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.login_activities_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: login_activities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.login_activities_id_seq OWNED BY public.login_activities.id;
--
-- Name: medias; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.medias (
id integer NOT NULL,
user_id integer,
account_id integer,
url character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
quote character varying,
type character varying,
file character varying
);
--
-- Name: medias_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.medias_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: medias_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.medias_id_seq OWNED BY public.medias.id;
--
-- Name: new_dynamic_annotation_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.new_dynamic_annotation_fields_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: new_dynamic_annotation_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.new_dynamic_annotation_fields_id_seq OWNED BY public.dynamic_annotation_fields.id;
--
-- Name: pghero_query_stats; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.pghero_query_stats (
id integer NOT NULL,
database text,
"user" text,
query text,
query_hash bigint,
total_time double precision,
calls bigint,
captured_at timestamp without time zone
);
--
-- Name: pghero_query_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.pghero_query_stats_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: pghero_query_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.pghero_query_stats_id_seq OWNED BY public.pghero_query_stats.id;
--
-- Name: project_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.project_groups (
id integer NOT NULL,
title character varying NOT NULL,
description text,
team_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: project_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.project_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: project_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.project_groups_id_seq OWNED BY public.project_groups.id;
--
-- Name: project_media_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.project_media_users (
id integer NOT NULL,
project_media_id integer,
user_id integer,
read boolean DEFAULT false NOT NULL
);
--
-- Name: project_media_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.project_media_users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: project_media_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.project_media_users_id_seq OWNED BY public.project_media_users.id;
--
-- Name: project_medias; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.project_medias (
id integer NOT NULL,
media_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
user_id integer,
cached_annotations_count integer DEFAULT 0,
archived integer DEFAULT 0,
targets_count integer DEFAULT 0 NOT NULL,
sources_count integer DEFAULT 0 NOT NULL,
team_id integer,
read boolean DEFAULT false NOT NULL,
source_id integer,
project_id integer,
last_seen integer,
channel integer DEFAULT 0,
cluster_id integer
);
--
-- Name: project_medias_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.project_medias_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: project_medias_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.project_medias_id_seq OWNED BY public.project_medias.id;
--
-- Name: projects; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.projects (
id integer NOT NULL,
user_id integer,
team_id integer,
title character varying,
is_default boolean DEFAULT false,
description text,
lead_image character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
archived integer DEFAULT 0,
settings text,
token character varying,
assignments_count integer DEFAULT 0,
project_group_id integer,
privacy integer DEFAULT 0 NOT NULL
);
--
-- Name: projects_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.projects_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.projects_id_seq OWNED BY public.projects.id;
--
-- Name: relationships; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.relationships (
id integer NOT NULL,
source_id integer NOT NULL,
target_id integer NOT NULL,
relationship_type character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
user_id integer,
weight double precision DEFAULT 0.0,
confirmed_by integer,
confirmed_at timestamp without time zone,
source_field character varying,
target_field character varying,
model character varying,
details jsonb DEFAULT '"{}"'::jsonb
);
--
-- Name: relationships_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.relationships_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: relationships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.relationships_id_seq OWNED BY public.relationships.id;
--
-- Name: saved_searches; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.saved_searches (
id integer NOT NULL,
title character varying NOT NULL,
team_id integer NOT NULL,
filters json,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: saved_searches_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.saved_searches_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: saved_searches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.saved_searches_id_seq OWNED BY public.saved_searches.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.schema_migrations (
version character varying NOT NULL
);
--
-- Name: shortened_urls; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.shortened_urls (
id integer NOT NULL,
owner_id integer,
owner_type character varying(20),
url text NOT NULL,
unique_key character varying(10) NOT NULL,
category character varying,
use_count integer DEFAULT 0 NOT NULL,
expires_at timestamp without time zone,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
--
-- Name: shortened_urls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.shortened_urls_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: shortened_urls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.shortened_urls_id_seq OWNED BY public.shortened_urls.id;
--
-- Name: sources; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.sources (
id integer NOT NULL,
user_id integer,
name character varying,
slogan character varying,
avatar character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
team_id integer,
file character varying,
archived integer DEFAULT 0,
lock_version integer DEFAULT 0 NOT NULL