-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsaashq.sql
2690 lines (1878 loc) · 73.3 KB
/
saashq.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
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.10 (Ubuntu 14.10-0ubuntu0.22.04.1)
-- Dumped by pg_dump version 14.10 (Ubuntu 14.10-0ubuntu0.22.04.1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public;
--
-- Name: EXTENSION "uuid-ossp"; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION "uuid-ossp" IS 'generate universally unique identifiers (UUIDs)';
--
-- Name: ActiveStatus; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."ActiveStatus" AS ENUM (
'ACTIVE',
'INACTIVE',
'PENDING'
);
ALTER TYPE public."ActiveStatus" OWNER TO postgres;
--
-- Name: CompanyRole; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."CompanyRole" AS ENUM (
'Admin',
'Employee',
'Manager'
);
ALTER TYPE public."CompanyRole" OWNER TO postgres;
--
-- Name: DefinitionStatus; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."DefinitionStatus" AS ENUM (
'active',
'inactive'
);
ALTER TYPE public."DefinitionStatus" OWNER TO postgres;
--
-- Name: Document; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."Document" AS ENUM (
'ID',
'Passport',
'Visa',
'Insurance',
'Health',
'Contract',
'Certificate',
'Other'
);
ALTER TYPE public."Document" OWNER TO postgres;
--
-- Name: DocumentSystemType; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."DocumentSystemType" AS ENUM (
'INVOICE',
'RECEIPT',
'CONTRACT',
'OFFER',
'ID',
'PASSPORT',
'VISA',
'INSURANCE',
'HEALTH',
'CERTIFICATE',
'OTHER'
);
ALTER TYPE public."DocumentSystemType" OWNER TO postgres;
--
-- Name: Language; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."Language" AS ENUM (
'cz',
'de',
'en'
);
ALTER TYPE public."Language" OWNER TO postgres;
--
-- Name: RequestType; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."RequestType" AS ENUM (
'Documents',
'Vacation',
'Leave',
'Training',
'Raise',
'Department',
'Other',
'Sick'
);
ALTER TYPE public."RequestType" OWNER TO postgres;
--
-- Name: Role; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."Role" AS ENUM (
'admin',
'user',
'guest'
);
ALTER TYPE public."Role" OWNER TO postgres;
--
-- Name: RuntimeStatus; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."RuntimeStatus" AS ENUM (
'pending',
'completed',
'failed'
);
ALTER TYPE public."RuntimeStatus" OWNER TO postgres;
--
-- Name: crm_Contact_Type; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."crm_Contact_Type" AS ENUM (
'Customer',
'Partner',
'Vendor'
);
ALTER TYPE public."crm_Contact_Type" OWNER TO postgres;
--
-- Name: crm_Lead_Status; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."crm_Lead_Status" AS ENUM (
'NEW',
'CONTACTED',
'QUALIFIED',
'LOST'
);
ALTER TYPE public."crm_Lead_Status" OWNER TO postgres;
--
-- Name: crm_Lead_Type; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."crm_Lead_Type" AS ENUM (
'DEMO'
);
ALTER TYPE public."crm_Lead_Type" OWNER TO postgres;
--
-- Name: crm_Opportunity_Status; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."crm_Opportunity_Status" AS ENUM (
'ACTIVE',
'INACTIVE',
'PENDING',
'CLOSED'
);
ALTER TYPE public."crm_Opportunity_Status" OWNER TO postgres;
--
-- Name: gptStatus; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."gptStatus" AS ENUM (
'ACTIVE',
'INACTIVE'
);
ALTER TYPE public."gptStatus" OWNER TO postgres;
--
-- Name: taskStatus; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public."taskStatus" AS ENUM (
'ACTIVE',
'PENDING',
'COMPLETE'
);
ALTER TYPE public."taskStatus" OWNER TO postgres;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: Boards; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Boards" (
id text NOT NULL,
description text NOT NULL,
favourite boolean,
"favouritePosition" integer,
icon text,
"position" integer,
title text NOT NULL,
"user" text NOT NULL,
visibility text,
date_created date DEFAULT CURRENT_TIMESTAMP,
last_edited date,
watchers text[]
);
ALTER TABLE public."Boards" OWNER TO postgres;
--
-- Name: Definitions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Definitions" (
id text NOT NULL,
name text NOT NULL,
tasks jsonb[],
global jsonb,
"uiObject" jsonb,
"userWfDefinitionId" text NOT NULL,
"createdAt" date DEFAULT CURRENT_TIMESTAMP,
description text NOT NULL,
"updatedAt" date,
"definitionStatus" public."DefinitionStatus" DEFAULT 'active'::public."DefinitionStatus" NOT NULL
);
ALTER TABLE public."Definitions" OWNER TO postgres;
--
-- Name: Documents; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Documents" (
id text NOT NULL,
date_created date DEFAULT CURRENT_TIMESTAMP,
"createdAt" date DEFAULT CURRENT_TIMESTAMP,
last_updated timestamp(3) without time zone,
"updatedAt" date,
document_name text NOT NULL,
created_by_user text,
"createdBy" text,
description text,
document_type text,
favourite boolean,
"document_file_mimeType" text NOT NULL,
document_file_url text NOT NULL,
status text,
visibility text,
tags jsonb,
key text,
size integer,
assigned_user text,
connected_documents text[],
"invoiceIDs" text[],
"opportunityIDs" text[],
"contactsIDs" text[],
"tasksIDs" text[],
"crm_accounts_tasksIDs" text,
"leadsIDs" text[],
"accountsIDs" text[],
"localFile" text NOT NULL,
"employeeID" text NOT NULL,
document_system_type public."DocumentSystemType" DEFAULT 'OTHER'::public."DocumentSystemType"
);
ALTER TABLE public."Documents" OWNER TO postgres;
--
-- Name: Documents_Types; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Documents_Types" (
id text NOT NULL,
name text NOT NULL
);
ALTER TABLE public."Documents_Types" OWNER TO postgres;
--
-- Name: Employee; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Employee" (
id text NOT NULL,
"firstName" text NOT NULL,
"lastName" text NOT NULL,
email text NOT NULL,
phone text NOT NULL,
role public."CompanyRole" DEFAULT 'Employee'::public."CompanyRole" NOT NULL,
"position" text,
salary double precision DEFAULT 0.00 NOT NULL,
"onBoarding" timestamp(3) without time zone,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL,
"IBAN" text NOT NULL,
photo text,
taxid text,
address text,
insurance text,
"teamsId" text,
assigned_to text,
"createdBy" text,
"updatedBy" text
);
ALTER TABLE public."Employee" OWNER TO postgres;
--
-- Name: ImageUpload; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."ImageUpload" (
id text NOT NULL
);
ALTER TABLE public."ImageUpload" OWNER TO postgres;
--
-- Name: Invoices; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Invoices" (
id text NOT NULL,
date_created date DEFAULT CURRENT_TIMESTAMP NOT NULL,
last_updated timestamp(3) without time zone NOT NULL,
last_updated_by text,
date_received date DEFAULT CURRENT_TIMESTAMP,
date_of_case date,
date_tax date,
date_due date,
description text,
document_type text,
favorite boolean DEFAULT false,
variable_symbol text,
constant_symbol text,
specific_symbol text,
order_number text,
internal_number text,
invoice_number text,
invoice_amount text,
"invoice_file_mimeType" text NOT NULL,
invoice_file_url text NOT NULL,
invoice_items jsonb,
invoice_type text,
invoice_currency text,
invoice_language text,
partner text,
partner_street text,
partner_city text,
partner_zip text,
partner_country text,
partner_country_code text,
partner_business_street text,
partner_business_city text,
partner_business_zip text,
partner_business_country text,
partner_business_country_code text,
"partner_VAT_number" text,
"partner_TAX_number" text,
"partner_TAX_local_number" text,
partner_phone_prefix text,
partner_phone_number text,
partner_fax_prefix text,
partner_fax_number text,
partner_email text,
partner_website text,
partner_is_person boolean,
partner_bank text,
partner_account_number text,
partner_account_bank_number text,
"partner_IBAN" text,
"partner_SWIFT" text,
"partner_BIC" text,
rossum_status text,
rossum_annotation_id text,
rossum_annotation_url text,
rossum_document_id text,
rossum_document_url text,
rossum_annotation_json_url text,
rossum_annotation_xml_url text,
money_s3_url text,
status text,
invoice_state_id text,
assigned_user_id text,
assigned_account_id text,
visibility boolean DEFAULT true NOT NULL,
connected_documents text[]
);
ALTER TABLE public."Invoices" OWNER TO postgres;
--
-- Name: Message; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Message" (
id text NOT NULL,
"fromID" text NOT NULL,
"toID" text NOT NULL,
message text NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL
);
ALTER TABLE public."Message" OWNER TO postgres;
--
-- Name: MyAccount; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."MyAccount" (
id text NOT NULL,
company_name text NOT NULL,
is_person boolean DEFAULT false NOT NULL,
email text,
email_accountant text,
phone_prefix text,
phone text,
mobile_prefix text,
mobile text,
fax_prefix text,
fax text,
website text,
street text,
city text,
state text,
zip text,
country text,
country_code text,
billing_street text,
billing_city text,
billing_state text,
billing_zip text,
billing_country text,
billing_country_code text,
currency text,
currency_symbol text,
"VAT_number" text NOT NULL,
"TAX_number" text,
bank_name text,
bank_account text,
bank_code text,
"bank_IBAN" text,
"bank_SWIFT" text
);
ALTER TABLE public."MyAccount" OWNER TO postgres;
--
-- Name: PaySlip; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."PaySlip" (
id text NOT NULL,
"employeeID" text NOT NULL,
month timestamp(3) without time zone NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL,
"localFile" text NOT NULL
);
ALTER TABLE public."PaySlip" OWNER TO postgres;
--
-- Name: PaySlipData; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."PaySlipData" (
id text NOT NULL,
"employeeID" text NOT NULL,
hours double precision NOT NULL,
rate double precision NOT NULL,
deduction double precision NOT NULL,
"IBAN" text NOT NULL,
month timestamp(3) without time zone NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL
);
ALTER TABLE public."PaySlipData" OWNER TO postgres;
--
-- Name: Request; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Request" (
id text NOT NULL,
"employeeID" text NOT NULL,
type public."RequestType" NOT NULL,
approved boolean DEFAULT false NOT NULL,
message text NOT NULL,
date timestamp(3) without time zone NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL
);
ALTER TABLE public."Request" OWNER TO postgres;
--
-- Name: Runtimes; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Runtimes" (
id text NOT NULL,
"workflowResults" jsonb,
global jsonb,
"workflowStatus" public."RuntimeStatus" DEFAULT 'pending'::public."RuntimeStatus" NOT NULL,
"workflowDefinitionId" text NOT NULL,
"createdAt" date DEFAULT CURRENT_TIMESTAMP,
"updatedAt" date,
tasks jsonb[],
logs jsonb[]
);
ALTER TABLE public."Runtimes" OWNER TO postgres;
--
-- Name: Schedule; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Schedule" (
id text NOT NULL,
"employeeID" text NOT NULL,
date timestamp(3) without time zone NOT NULL,
"timeIn" timestamp(3) without time zone NOT NULL,
"timeOut" timestamp(3) without time zone NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL
);
ALTER TABLE public."Schedule" OWNER TO postgres;
--
-- Name: Sections; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Sections" (
id text NOT NULL,
board text NOT NULL,
title text NOT NULL,
"position" integer
);
ALTER TABLE public."Sections" OWNER TO postgres;
--
-- Name: Tasks; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Tasks" (
id text NOT NULL,
content text,
"createdAt" date DEFAULT CURRENT_TIMESTAMP,
"createdBy" text,
"updatedAt" date,
"updatedBy" text,
"dueDateAt" date DEFAULT CURRENT_TIMESTAMP,
"lastEditedAt" date DEFAULT CURRENT_TIMESTAMP,
"position" integer NOT NULL,
priority text NOT NULL,
section text,
tags jsonb,
title text NOT NULL,
likes integer DEFAULT 0,
"user" text,
"documentIDs" text[],
"taskStatus" public."taskStatus" DEFAULT 'ACTIVE'::public."taskStatus"
);
ALTER TABLE public."Tasks" OWNER TO postgres;
--
-- Name: TeamMessage; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."TeamMessage" (
id text NOT NULL,
"fromID" text NOT NULL,
"toID" text NOT NULL,
message text NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL
);
ALTER TABLE public."TeamMessage" OWNER TO postgres;
--
-- Name: TeamTask; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."TeamTask" (
id text NOT NULL,
"teamID" text NOT NULL,
task text NOT NULL,
description text,
done boolean DEFAULT false NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL,
deadline timestamp(3) without time zone NOT NULL
);
ALTER TABLE public."TeamTask" OWNER TO postgres;
--
-- Name: Teams; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Teams" (
id text NOT NULL,
name text NOT NULL,
tasks text,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL
);
ALTER TABLE public."Teams" OWNER TO postgres;
--
-- Name: Timekeeping; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Timekeeping" (
id text NOT NULL,
"employeeID" text NOT NULL,
"timeIn" timestamp(3) without time zone NOT NULL,
"timeOut" timestamp(3) without time zone,
verified boolean DEFAULT false NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL
);
ALTER TABLE public."Timekeeping" OWNER TO postgres;
--
-- Name: TodoList; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."TodoList" (
id text NOT NULL,
"createdAt" text NOT NULL,
description text NOT NULL,
title text NOT NULL,
url text NOT NULL,
"user" text NOT NULL
);
ALTER TABLE public."TodoList" OWNER TO postgres;
--
-- Name: Training; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Training" (
id text NOT NULL,
"employeeID" text NOT NULL,
type text NOT NULL,
date timestamp(3) without time zone NOT NULL,
"time" timestamp(3) without time zone NOT NULL,
"createdAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
"updatedAt" timestamp(3) without time zone NOT NULL,
"localFile" text NOT NULL
);
ALTER TABLE public."Training" OWNER TO postgres;
--
-- Name: Users; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Users" (
id text NOT NULL,
account_name text,
avatar text,
email text NOT NULL,
is_account_admin boolean DEFAULT false NOT NULL,
is_admin boolean DEFAULT false NOT NULL,
created_on date DEFAULT CURRENT_TIMESTAMP NOT NULL,
"lastLoginAt" date,
name text,
password text,
username text,
"userStatus" public."ActiveStatus" DEFAULT 'PENDING'::public."ActiveStatus" NOT NULL,
"userLanguage" public."Language" DEFAULT 'en'::public."Language" NOT NULL,
"watching_boardsIDs" text[],
"watching_accountsIDs" text[],
role public."Role" DEFAULT 'guest'::public."Role" NOT NULL
);
ALTER TABLE public."Users" OWNER TO postgres;
--
-- Name: _BoardsToUsers; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_BoardsToUsers" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_BoardsToUsers" OWNER TO postgres;
--
-- Name: _DocumentsToInvoices; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_DocumentsToInvoices" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_DocumentsToInvoices" OWNER TO postgres;
--
-- Name: _DocumentsToTasks; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_DocumentsToTasks" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_DocumentsToTasks" OWNER TO postgres;
--
-- Name: _DocumentsTocrm_Accounts; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_DocumentsTocrm_Accounts" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_DocumentsTocrm_Accounts" OWNER TO postgres;
--
-- Name: _DocumentsTocrm_Contacts; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_DocumentsTocrm_Contacts" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_DocumentsTocrm_Contacts" OWNER TO postgres;
--
-- Name: _DocumentsTocrm_Leads; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_DocumentsTocrm_Leads" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_DocumentsTocrm_Leads" OWNER TO postgres;
--
-- Name: _DocumentsTocrm_Opportunities; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_DocumentsTocrm_Opportunities" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_DocumentsTocrm_Opportunities" OWNER TO postgres;
--
-- Name: _TeamTaskTotasksComments; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_TeamTaskTotasksComments" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_TeamTaskTotasksComments" OWNER TO postgres;
--
-- Name: _crm_ContactsTocrm_Opportunities; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."_crm_ContactsTocrm_Opportunities" (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public."_crm_ContactsTocrm_Opportunities" OWNER TO postgres;
--
-- Name: _watching_accounts; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public._watching_accounts (
"A" text NOT NULL,
"B" text NOT NULL
);
ALTER TABLE public._watching_accounts OWNER TO postgres;
--
-- Name: crm_Accounts; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."crm_Accounts" (
id text NOT NULL,
"createdAt" date DEFAULT CURRENT_TIMESTAMP,
"createdBy" text,
"updatedAt" date,
"updatedBy" text,
annual_revenue text,
assigned_to text,
billing_city text,
billing_country text,
billing_postal_code text,
billing_state text,
billing_street text,
company_id text,
description text,
email text,
employees text,
fax text,
industry text,
member_of text,
name text NOT NULL,
office_phone text,
shipping_city text,
shipping_country text,
shipping_postal_code text,
shipping_state text,
shipping_street text,
status text DEFAULT 'Inactive'::text,
type text DEFAULT 'Customer'::text,
vat text,
website text,
"documentsIDs" text[],
watchers text[]
);
ALTER TABLE public."crm_Accounts" OWNER TO postgres;
--
-- Name: crm_Accounts_Tasks; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."crm_Accounts_Tasks" (
id text NOT NULL,
content text,
"createdAt" date DEFAULT CURRENT_TIMESTAMP,
"createdBy" text,
"updatedAt" date,
"updatedBy" text,
"dueDateAt" date DEFAULT CURRENT_TIMESTAMP,
priority text NOT NULL,
tags jsonb,
title text NOT NULL,
likes integer DEFAULT 0,
"user" text,
account text,
"taskStatus" public."taskStatus" DEFAULT 'ACTIVE'::public."taskStatus"
);
ALTER TABLE public."crm_Accounts_Tasks" OWNER TO postgres;
--
-- Name: crm_Contacts; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."crm_Contacts" (
id text NOT NULL,
account text,
assigned_to text,
birthday text,
created_by text,
"createdBy" text,
created_on timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP,
"createdAt" date DEFAULT CURRENT_TIMESTAMP,
last_activity date DEFAULT CURRENT_TIMESTAMP,
"updatedAt" date,
"updatedBy" text,
last_activity_by text,
description text,
email text,
personal_email text,
first_name text,
last_name text NOT NULL,
office_phone text,
mobile_phone text,
website text,
"position" text,
status boolean DEFAULT true NOT NULL,
social_twitter text,
social_facebook text,
social_linkedin text,
social_skype text,
social_instagram text,
social_youtube text,
social_tiktok text,
type text DEFAULT 'Customer'::text,
"opportunitiesIDs" text[],
"accountsIDs" text,
"documentsIDs" text[]
);
ALTER TABLE public."crm_Contacts" OWNER TO postgres;