forked from linuxfoundation/crowd.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.sql
More file actions
1381 lines (946 loc) · 41 KB
/
Copy pathschema.sql
File metadata and controls
1381 lines (946 loc) · 41 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
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
--
-- PostgreSQL database dump
--
-- Dumped from database version 13.6
-- Dumped by pg_dump version 13.6
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: activities; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.activities (
id uuid NOT NULL,
type text NOT NULL,
"timestamp" timestamp with time zone NOT NULL,
platform text NOT NULL,
info jsonb DEFAULT '{}'::jsonb,
"crowdInfo" jsonb DEFAULT '{}'::jsonb,
"isKeyAction" boolean DEFAULT false NOT NULL,
score integer DEFAULT 2,
"sourceId" text NOT NULL,
"sourceParentId" character varying(255),
"importHash" character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"communityMemberId" uuid NOT NULL,
"conversationId" uuid,
"parentId" uuid,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: auditLogs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."auditLogs" (
id uuid NOT NULL,
"entityName" character varying(255) NOT NULL,
"entityId" character varying(255) NOT NULL,
"tenantId" uuid,
action character varying(32) NOT NULL,
"createdById" uuid,
"createdByEmail" character varying(255),
"timestamp" timestamp with time zone NOT NULL,
"values" json NOT NULL
);
--
-- Name: automationExecutions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."automationExecutions" (
id uuid NOT NULL,
"automationId" uuid NOT NULL,
type character varying(80) NOT NULL,
"tenantId" uuid NOT NULL,
trigger character varying(80) NOT NULL,
state character varying(80) NOT NULL,
error json,
"executedAt" timestamp with time zone NOT NULL,
"eventId" character varying(255) NOT NULL,
payload json NOT NULL
);
--
-- Name: automations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.automations (
id uuid NOT NULL,
type character varying(80) NOT NULL,
"tenantId" uuid NOT NULL,
trigger character varying(80) NOT NULL,
settings jsonb NOT NULL,
state character varying(80) NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: communityMemberNoMerge; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."communityMemberNoMerge" (
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"communityMemberId" uuid NOT NULL,
"noMergeId" uuid NOT NULL
);
--
-- Name: communityMemberTags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."communityMemberTags" (
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"communityMemberId" uuid NOT NULL,
"tagId" uuid NOT NULL
);
--
-- Name: communityMemberToMerge; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."communityMemberToMerge" (
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"communityMemberId" uuid NOT NULL,
"toMergeId" uuid NOT NULL
);
--
-- Name: communityMembers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."communityMembers" (
id uuid NOT NULL,
username jsonb NOT NULL,
type character varying(255) DEFAULT 'member'::character varying NOT NULL,
info jsonb DEFAULT '{}'::jsonb,
"crowdInfo" jsonb DEFAULT '{}'::jsonb,
email text,
score integer DEFAULT '-1'::integer,
bio text,
organisation text,
location text,
signals text,
"joinedAt" timestamp with time zone NOT NULL,
"importHash" character varying(255),
reach jsonb DEFAULT '{"total": -1}'::jsonb,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: conversationSettings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."conversationSettings" (
id uuid NOT NULL,
"customUrl" text,
"logoUrl" text,
"faviconUrl" text,
theme jsonb,
"autoPublish" jsonb,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"tenantId" uuid,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: conversations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.conversations (
id uuid NOT NULL,
title text NOT NULL,
slug text NOT NULL,
published boolean DEFAULT false NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: eagleEyeContents; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."eagleEyeContents" (
id uuid NOT NULL,
"sourceId" text NOT NULL,
"vectorId" text NOT NULL,
status character varying(255) DEFAULT NULL::character varying,
title text NOT NULL,
username text NOT NULL,
url text NOT NULL,
text text,
"timestamp" timestamp with time zone NOT NULL,
platform text NOT NULL,
keywords text[],
"similarityScore" double precision,
"userAttributes" jsonb,
"postAttributes" jsonb,
"importHash" character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: files; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.files (
id uuid NOT NULL,
"belongsTo" character varying(255) NOT NULL,
"belongsToId" character varying(255) NOT NULL,
"belongsToColumn" character varying(255) NOT NULL,
name character varying(2083) NOT NULL,
"sizeInBytes" integer,
"privateUrl" character varying(2083),
"publicUrl" character varying(2083),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"tenantId" uuid,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: integrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.integrations (
id uuid NOT NULL,
platform text,
status text,
"limitCount" integer,
"limitLastResetAt" timestamp with time zone,
token text,
"refreshToken" text,
settings jsonb DEFAULT '{}'::jsonb,
"integrationIdentifier" text,
"importHash" character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: microservices; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.microservices (
id uuid NOT NULL,
init boolean DEFAULT false NOT NULL,
running boolean DEFAULT false NOT NULL,
type text NOT NULL,
variant text DEFAULT 'default'::text,
settings jsonb DEFAULT '{}'::jsonb NOT NULL,
"importHash" character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: reports; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.reports (
id uuid NOT NULL,
public boolean DEFAULT false NOT NULL,
name text NOT NULL,
"importHash" character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: settings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.settings (
id character varying(255) DEFAULT 'default'::character varying NOT NULL,
website character varying(255),
"backgroundImageUrl" character varying(1024),
"logoUrl" character varying(1024),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tags (
id uuid NOT NULL,
name text NOT NULL,
"importHash" character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: tenantUsers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public."tenantUsers" (
id uuid NOT NULL,
roles text[],
"invitationToken" character varying(255),
status character varying(255) NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"tenantId" uuid,
"userId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: tenants; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tenants (
id uuid NOT NULL,
name character varying(255) NOT NULL,
url character varying(50) NOT NULL,
plan character varying(255) DEFAULT 'free'::character varying NOT NULL,
"planStatus" character varying(255) DEFAULT 'active'::character varying NOT NULL,
"planStripeCustomerId" character varying(255),
"planUserId" uuid,
"onboardedAt" timestamp with time zone,
"hasSampleData" boolean DEFAULT false NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.users (
id uuid NOT NULL,
"fullName" character varying(255),
"firstName" character varying(80),
password character varying(255),
"emailVerified" boolean DEFAULT false NOT NULL,
"emailVerificationToken" character varying(255),
"emailVerificationTokenExpiresAt" timestamp with time zone,
provider character varying(255),
"providerId" character varying(2024),
"passwordResetToken" character varying(255),
"passwordResetTokenExpiresAt" timestamp with time zone,
"lastName" character varying(175),
"phoneNumber" character varying(24),
email character varying(255) NOT NULL,
"jwtTokenInvalidBefore" timestamp with time zone,
"importHash" character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: widgets; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.widgets (
id uuid NOT NULL,
type text NOT NULL,
title text,
settings jsonb,
cache jsonb,
"importHash" character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
"deletedAt" timestamp with time zone,
"reportId" uuid,
"tenantId" uuid NOT NULL,
"createdById" uuid,
"updatedById" uuid
);
--
-- Name: activities activities_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.activities
ADD CONSTRAINT activities_pkey PRIMARY KEY (id);
--
-- Name: auditLogs auditLogs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."auditLogs"
ADD CONSTRAINT "auditLogs_pkey" PRIMARY KEY (id);
--
-- Name: automationExecutions automationExecutions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."automationExecutions"
ADD CONSTRAINT "automationExecutions_pkey" PRIMARY KEY (id);
--
-- Name: automations automations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.automations
ADD CONSTRAINT automations_pkey PRIMARY KEY (id);
--
-- Name: communityMemberNoMerge communityMemberNoMerge_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."communityMemberNoMerge"
ADD CONSTRAINT "communityMemberNoMerge_pkey" PRIMARY KEY ("communityMemberId", "noMergeId");
--
-- Name: communityMemberTags communityMemberTags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."communityMemberTags"
ADD CONSTRAINT "communityMemberTags_pkey" PRIMARY KEY ("communityMemberId", "tagId");
--
-- Name: communityMemberToMerge communityMemberToMerge_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."communityMemberToMerge"
ADD CONSTRAINT "communityMemberToMerge_pkey" PRIMARY KEY ("communityMemberId", "toMergeId");
--
-- Name: communityMembers communityMembers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."communityMembers"
ADD CONSTRAINT "communityMembers_pkey" PRIMARY KEY (id);
--
-- Name: conversationSettings conversationSettings_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."conversationSettings"
ADD CONSTRAINT "conversationSettings_pkey" PRIMARY KEY (id);
--
-- Name: conversations conversations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.conversations
ADD CONSTRAINT conversations_pkey PRIMARY KEY (id);
--
-- Name: eagleEyeContents eagleEyeContents_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."eagleEyeContents"
ADD CONSTRAINT "eagleEyeContents_pkey" PRIMARY KEY (id);
--
-- Name: files files_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.files
ADD CONSTRAINT files_pkey PRIMARY KEY (id);
--
-- Name: integrations integrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.integrations
ADD CONSTRAINT integrations_pkey PRIMARY KEY (id);
--
-- Name: microservices microservices_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.microservices
ADD CONSTRAINT microservices_pkey PRIMARY KEY (id);
--
-- Name: reports reports_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.reports
ADD CONSTRAINT reports_pkey PRIMARY KEY (id);
--
-- Name: settings settings_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.settings
ADD CONSTRAINT settings_pkey PRIMARY KEY (id);
--
-- Name: tags tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tags
ADD CONSTRAINT tags_pkey PRIMARY KEY (id);
--
-- Name: tenantUsers tenantUsers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."tenantUsers"
ADD CONSTRAINT "tenantUsers_pkey" PRIMARY KEY (id);
--
-- Name: tenants tenants_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tenants
ADD CONSTRAINT tenants_pkey PRIMARY KEY (id);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: widgets widgets_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.widgets
ADD CONSTRAINT widgets_pkey PRIMARY KEY (id);
--
-- Name: activities_community_member_id_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX activities_community_member_id_tenant_id ON public.activities USING btree ("communityMemberId", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: activities_conversation_id_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX activities_conversation_id_tenant_id ON public.activities USING btree ("conversationId", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: activities_deleted_at; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX activities_deleted_at ON public.activities USING btree ("deletedAt");
--
-- Name: activities_import_hash_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX activities_import_hash_tenant_id ON public.activities USING btree ("importHash", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: activities_parent_id_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX activities_parent_id_tenant_id ON public.activities USING btree ("parentId", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: activities_platform_tenant_id_type_timestamp; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX activities_platform_tenant_id_type_timestamp ON public.activities USING btree (platform, "tenantId", type, "timestamp") WHERE ("deletedAt" IS NULL);
--
-- Name: activities_source_id_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX activities_source_id_tenant_id ON public.activities USING btree ("sourceId", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: activities_source_parent_id_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX activities_source_parent_id_tenant_id ON public.activities USING btree ("sourceParentId", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: activities_timestamp_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX activities_timestamp_tenant_id ON public.activities USING btree ("timestamp", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: automation_executions_automation_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX automation_executions_automation_id ON public."automationExecutions" USING btree ("automationId");
--
-- Name: automations_type_tenant_id_trigger_state; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX automations_type_tenant_id_trigger_state ON public.automations USING btree (type, "tenantId", trigger, state);
--
-- Name: community_members_created_at_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_created_at_tenant_id ON public."communityMembers" USING btree ("createdAt", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_email_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_email_tenant_id ON public."communityMembers" USING btree (email, "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_import_hash_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX community_members_import_hash_tenant_id ON public."communityMembers" USING btree ("importHash", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_joined_at_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_joined_at_tenant_id ON public."communityMembers" USING btree ("joinedAt", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_location_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_location_tenant_id ON public."communityMembers" USING btree (location, "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_organisation_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_organisation_tenant_id ON public."communityMembers" USING btree (organisation, "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_score_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_score_tenant_id ON public."communityMembers" USING btree (score, "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_signals_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_signals_tenant_id ON public."communityMembers" USING btree (signals, "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_type_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_type_tenant_id ON public."communityMembers" USING btree (type, "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: community_members_username; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX community_members_username ON public."communityMembers" USING gin (username jsonb_path_ops);
--
-- Name: conversations_slug_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX conversations_slug_tenant_id ON public.conversations USING btree (slug, "tenantId");
--
-- Name: discord; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX discord ON public."communityMembers" USING btree (((username ->> 'discord'::text)));
--
-- Name: eagle_eye_contents_import_hash_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX eagle_eye_contents_import_hash_tenant_id ON public."eagleEyeContents" USING btree ("importHash", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: eagle_eye_contents_platform_tenant_id_timestamp; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX eagle_eye_contents_platform_tenant_id_timestamp ON public."eagleEyeContents" USING btree (platform, "tenantId", "timestamp") WHERE ("deletedAt" IS NULL);
--
-- Name: eagle_eye_contents_status_tenant_id_timestamp; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX eagle_eye_contents_status_tenant_id_timestamp ON public."eagleEyeContents" USING btree (status, "tenantId", "timestamp") WHERE ("deletedAt" IS NULL);
--
-- Name: eagle_eye_contents_tenant_id_timestamp; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX eagle_eye_contents_tenant_id_timestamp ON public."eagleEyeContents" USING btree ("tenantId", "timestamp") WHERE ("deletedAt" IS NULL);
--
-- Name: github; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX github ON public."communityMembers" USING btree (((username ->> 'github'::text)));
--
-- Name: integrations_import_hash_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX integrations_import_hash_tenant_id ON public.integrations USING btree ("importHash", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: integrations_integration_identifier; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX integrations_integration_identifier ON public.integrations USING btree ("integrationIdentifier");
--
-- Name: microservices_import_hash_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX microservices_import_hash_tenant_id ON public.microservices USING btree ("importHash", "tenantId");
--
-- Name: microservices_type_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX microservices_type_tenant_id ON public.microservices USING btree (type, "tenantId");
--
-- Name: reports_import_hash_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX reports_import_hash_tenant_id ON public.reports USING btree ("importHash", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: slack; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX slack ON public."communityMembers" USING btree (((username ->> 'slack'::text)));
--
-- Name: tags_import_hash_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX tags_import_hash_tenant_id ON public.tags USING btree ("importHash", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: tags_name_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX tags_name_tenant_id ON public.tags USING btree (name, "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: tenants_url; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX tenants_url ON public.tenants USING btree (url) WHERE ("deletedAt" IS NULL);
--
-- Name: twitter; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX twitter ON public."communityMembers" USING btree (((username ->> 'twitter'::text)));
--
-- Name: users_email; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX users_email ON public.users USING btree (email) WHERE ("deletedAt" IS NULL);
--
-- Name: users_import_hash; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX users_import_hash ON public.users USING btree ("importHash") WHERE ("deletedAt" IS NULL);
--
-- Name: widgets_import_hash_tenant_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX widgets_import_hash_tenant_id ON public.widgets USING btree ("importHash", "tenantId") WHERE ("deletedAt" IS NULL);
--
-- Name: activities activities_communityMemberId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.activities
ADD CONSTRAINT "activities_communityMemberId_fkey" FOREIGN KEY ("communityMemberId") REFERENCES public."communityMembers"(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: activities activities_conversationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.activities
ADD CONSTRAINT "activities_conversationId_fkey" FOREIGN KEY ("conversationId") REFERENCES public.conversations(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: activities activities_createdById_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.activities
ADD CONSTRAINT "activities_createdById_fkey" FOREIGN KEY ("createdById") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: activities activities_parentId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.activities
ADD CONSTRAINT "activities_parentId_fkey" FOREIGN KEY ("parentId") REFERENCES public.activities(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: activities activities_tenantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.activities
ADD CONSTRAINT "activities_tenantId_fkey" FOREIGN KEY ("tenantId") REFERENCES public.tenants(id) ON UPDATE CASCADE;
--
-- Name: activities activities_updatedById_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.activities
ADD CONSTRAINT "activities_updatedById_fkey" FOREIGN KEY ("updatedById") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: automationExecutions automationExecutions_automationId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."automationExecutions"
ADD CONSTRAINT "automationExecutions_automationId_fkey" FOREIGN KEY ("automationId") REFERENCES public.automations(id) ON UPDATE CASCADE;
--
-- Name: automationExecutions automationExecutions_tenantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."automationExecutions"
ADD CONSTRAINT "automationExecutions_tenantId_fkey" FOREIGN KEY ("tenantId") REFERENCES public.tenants(id) ON UPDATE CASCADE;
--
-- Name: automations automations_createdById_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.automations
ADD CONSTRAINT "automations_createdById_fkey" FOREIGN KEY ("createdById") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: automations automations_tenantId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.automations
ADD CONSTRAINT "automations_tenantId_fkey" FOREIGN KEY ("tenantId") REFERENCES public.tenants(id) ON UPDATE CASCADE;
--
-- Name: automations automations_updatedById_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.automations
ADD CONSTRAINT "automations_updatedById_fkey" FOREIGN KEY ("updatedById") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: communityMemberNoMerge communityMemberNoMerge_communityMemberId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."communityMemberNoMerge"
ADD CONSTRAINT "communityMemberNoMerge_communityMemberId_fkey" FOREIGN KEY ("communityMemberId") REFERENCES public."communityMembers"(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: communityMemberNoMerge communityMemberNoMerge_noMergeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."communityMemberNoMerge"
ADD CONSTRAINT "communityMemberNoMerge_noMergeId_fkey" FOREIGN KEY ("noMergeId") REFERENCES public."communityMembers"(id) ON UPDATE CASCADE ON DELETE CASCADE;