forked from miladmohammadint/reflio_clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup.sql
More file actions
2351 lines (1689 loc) · 72.9 KB
/
Copy pathbackup.sql
File metadata and controls
2351 lines (1689 loc) · 72.9 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.3
-- Dumped by pg_dump version 14.11 (Homebrew)
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: auth_group; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO reflio_user;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.auth_group_permissions (
id bigint NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO reflio_user;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.auth_permission (
id integer NOT NULL,
name character varying(255) NOT NULL,
content_type_id integer NOT NULL,
codename character varying(100) NOT NULL
);
ALTER TABLE public.auth_permission OWNER TO reflio_user;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_permission_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.auth_user (
id integer NOT NULL,
password character varying(128) NOT NULL,
last_login timestamp with time zone,
is_superuser boolean NOT NULL,
username character varying(150) NOT NULL,
first_name character varying(150) NOT NULL,
last_name character varying(150) NOT NULL,
email character varying(254) NOT NULL,
is_staff boolean NOT NULL,
is_active boolean NOT NULL,
date_joined timestamp with time zone NOT NULL
);
ALTER TABLE public.auth_user OWNER TO reflio_user;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.auth_user_groups (
id bigint NOT NULL,
user_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.auth_user_groups OWNER TO reflio_user;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.auth_user_user_permissions (
id bigint NOT NULL,
user_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_user_user_permissions OWNER TO reflio_user;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_user_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: authtoken_token; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.authtoken_token (
key character varying(40) NOT NULL,
created timestamp with time zone NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.authtoken_token OWNER TO reflio_user;
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.django_admin_log (
id integer NOT NULL,
action_time timestamp with time zone NOT NULL,
object_id text,
object_repr character varying(200) NOT NULL,
action_flag smallint NOT NULL,
change_message text NOT NULL,
content_type_id integer,
user_id integer NOT NULL,
CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0))
);
ALTER TABLE public.django_admin_log OWNER TO reflio_user;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_admin_log_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.django_content_type (
id integer NOT NULL,
app_label character varying(100) NOT NULL,
model character varying(100) NOT NULL
);
ALTER TABLE public.django_content_type OWNER TO reflio_user;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_content_type_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.django_migrations (
id bigint NOT NULL,
app character varying(255) NOT NULL,
name character varying(255) NOT NULL,
applied timestamp with time zone NOT NULL
);
ALTER TABLE public.django_migrations OWNER TO reflio_user;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_migrations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.django_session (
session_key character varying(40) NOT NULL,
session_data text NOT NULL,
expire_date timestamp with time zone NOT NULL
);
ALTER TABLE public.django_session OWNER TO reflio_user;
--
-- Name: reflio_django_app_affiliate; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_affiliate (
affiliate_id uuid NOT NULL,
invite_email text,
invited_user_id uuid,
campaign_id text,
company_id text,
accepted boolean NOT NULL,
created timestamp with time zone NOT NULL,
impressions integer NOT NULL,
referral_code text,
user_id integer NOT NULL,
team_id integer NOT NULL,
id bigint NOT NULL
);
ALTER TABLE public.reflio_django_app_affiliate OWNER TO reflio_user;
--
-- Name: reflio_django_app_affiliate_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.reflio_django_app_affiliate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.reflio_django_app_affiliate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: reflio_django_app_asset; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_asset (
asset_id character varying(15) NOT NULL,
file_name character varying(255),
file_custom_name character varying(255),
file_size integer,
created timestamp with time zone NOT NULL,
company_id uuid NOT NULL,
team_id integer NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.reflio_django_app_asset OWNER TO reflio_user;
--
-- Name: reflio_django_app_campaign; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_campaign (
campaign_id character varying(15) NOT NULL,
campaign_name character varying(255) NOT NULL,
commission_type character varying(20) NOT NULL,
commission_value integer NOT NULL,
cookie_window integer NOT NULL,
commission_period integer NOT NULL,
default_campaign boolean NOT NULL,
campaign_public boolean NOT NULL,
minimum_days_payout integer NOT NULL,
discount_code character varying(255),
discount_value integer,
discount_type character varying(20),
custom_campaign_data jsonb,
created timestamp with time zone NOT NULL,
company_id uuid NOT NULL,
team_id integer NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.reflio_django_app_campaign OWNER TO reflio_user;
--
-- Name: reflio_django_app_commission; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_commission (
commission_id character varying(20) NOT NULL,
payment_intent_id character varying(255) NOT NULL,
commission_sale_value integer,
commission_refund_value integer,
paid_at timestamp with time zone,
reflio_commission_paid boolean NOT NULL,
commission_total integer,
commission_due_date timestamp with time zone,
commission_description text,
created timestamp with time zone NOT NULL,
affiliate_id uuid NOT NULL,
campaign_id character varying(15) NOT NULL,
company_id uuid NOT NULL,
referral_id text NOT NULL
);
ALTER TABLE public.reflio_django_app_commission OWNER TO reflio_user;
--
-- Name: reflio_django_app_company; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_company (
company_id uuid NOT NULL,
company_name character varying(255) NOT NULL,
company_url character varying(200),
company_image character varying(200),
company_meta jsonb,
company_currency character varying(3) NOT NULL,
company_handle character varying(255),
company_affiliates jsonb,
stripe_account_data jsonb,
domain_verified boolean NOT NULL,
stripe_id character varying(255),
active_company boolean NOT NULL,
created timestamp with time zone NOT NULL,
team_id integer NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.reflio_django_app_company OWNER TO reflio_user;
--
-- Name: reflio_django_app_customer; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_customer (
id bigint NOT NULL,
stripe_customer_id character varying(255) NOT NULL,
team_id integer NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.reflio_django_app_customer OWNER TO reflio_user;
--
-- Name: reflio_django_app_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.reflio_django_app_customer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.reflio_django_app_customer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: reflio_django_app_invite; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_invite (
id bigint NOT NULL,
invite_id character varying(15) NOT NULL,
email character varying(254),
accepted boolean NOT NULL,
created timestamp with time zone NOT NULL,
team_id integer NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.reflio_django_app_invite OWNER TO reflio_user;
--
-- Name: reflio_django_app_invite_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.reflio_django_app_invite ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.reflio_django_app_invite_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: reflio_django_app_member; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_member (
member_id uuid NOT NULL,
created timestamp with time zone NOT NULL,
member_team_id integer NOT NULL,
member_user_id integer NOT NULL,
id bigint NOT NULL
);
ALTER TABLE public.reflio_django_app_member OWNER TO reflio_user;
--
-- Name: reflio_django_app_member_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.reflio_django_app_member ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.reflio_django_app_member_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: reflio_django_app_price; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_price (
id character varying(255) NOT NULL,
active boolean NOT NULL,
description text NOT NULL,
unit_amount bigint NOT NULL,
currency character varying(3) NOT NULL,
type character varying(20) NOT NULL,
"interval" character varying(5) NOT NULL,
interval_count integer NOT NULL,
trial_period_days integer NOT NULL,
metadata jsonb NOT NULL,
product_id character varying(255) NOT NULL
);
ALTER TABLE public.reflio_django_app_price OWNER TO reflio_user;
--
-- Name: reflio_django_app_product; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_product (
product_id character varying(255) NOT NULL,
active boolean NOT NULL,
name character varying(255) NOT NULL,
description text NOT NULL,
image character varying(200) NOT NULL,
metadata jsonb NOT NULL
);
ALTER TABLE public.reflio_django_app_product OWNER TO reflio_user;
--
-- Name: reflio_django_app_referral; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_referral (
team_id text NOT NULL,
referral_id text NOT NULL,
affiliate_code text,
campaign_id text,
company_id text,
referral_reference_email text,
commission_type text,
commission_value integer,
cookie_window integer NOT NULL,
commission_period integer NOT NULL,
minimum_days_payout integer NOT NULL,
referral_converted boolean NOT NULL,
referral_expiry text,
created timestamp with time zone NOT NULL,
affiliate_id_id uuid NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.reflio_django_app_referral OWNER TO reflio_user;
--
-- Name: reflio_django_app_subscription; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_subscription (
id character varying(255) NOT NULL,
status character varying(20) NOT NULL,
team_id integer NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.reflio_django_app_subscription OWNER TO reflio_user;
--
-- Name: reflio_django_app_team; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_team (
user_id integer NOT NULL,
team_id uuid NOT NULL,
team_name character varying(255),
billing_address jsonb,
payment_method jsonb,
created timestamp with time zone NOT NULL
);
ALTER TABLE public.reflio_django_app_team OWNER TO reflio_user;
--
-- Name: reflio_django_app_userdetails; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_userdetails (
id bigint NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.reflio_django_app_userdetails OWNER TO reflio_user;
--
-- Name: reflio_django_app_userdetails_id_seq; Type: SEQUENCE; Schema: public; Owner: reflio_user
--
ALTER TABLE public.reflio_django_app_userdetails ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.reflio_django_app_userdetails_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: reflio_django_app_userprofile; Type: TABLE; Schema: public; Owner: reflio_user
--
CREATE TABLE public.reflio_django_app_userprofile (
user_id integer NOT NULL,
username character varying(150) NOT NULL,
full_name character varying(150) NOT NULL,
avatar_url character varying(200),
email character varying(254) NOT NULL,
paypal_email character varying(254),
user_type character varying(10) NOT NULL,
team_id integer
);
ALTER TABLE public.reflio_django_app_userprofile OWNER TO reflio_user;
--
-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: reflio_user
--
COPY public.auth_group (id, name) FROM stdin;
1 User
\.
--
-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: reflio_user
--
COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin;
2 1 97
3 1 98
74 1 71
75 1 72
\.
--
-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: reflio_user
--
COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin;
1 Can add log entry 1 add_logentry
2 Can change log entry 1 change_logentry
3 Can delete log entry 1 delete_logentry
4 Can view log entry 1 view_logentry
5 Can add permission 2 add_permission
6 Can change permission 2 change_permission
7 Can delete permission 2 delete_permission
8 Can view permission 2 view_permission
9 Can add group 3 add_group
10 Can change group 3 change_group
11 Can delete group 3 delete_group
12 Can view group 3 view_group
13 Can add user 4 add_user
14 Can change user 4 change_user
15 Can delete user 4 delete_user
16 Can view user 4 view_user
17 Can add content type 5 add_contenttype
18 Can change content type 5 change_contenttype
19 Can delete content type 5 delete_contenttype
20 Can view content type 5 view_contenttype
21 Can add session 6 add_session
22 Can change session 6 change_session
23 Can delete session 6 delete_session
24 Can view session 6 view_session
25 Can add affiliate 7 add_affiliate
26 Can change affiliate 7 change_affiliate
27 Can delete affiliate 7 delete_affiliate
28 Can view affiliate 7 view_affiliate
29 Can add campaign 8 add_campaign
30 Can change campaign 8 change_campaign
31 Can delete campaign 8 delete_campaign
32 Can view campaign 8 view_campaign
33 Can add product 9 add_product
34 Can change product 9 change_product
35 Can delete product 9 delete_product
36 Can view product 9 view_product
37 Can add team 10 add_team
38 Can change team 10 change_team
39 Can delete team 10 delete_team
40 Can view team 10 view_team
41 Can add user profile 11 add_userprofile
42 Can change user profile 11 change_userprofile
43 Can delete user profile 11 delete_userprofile
44 Can view user profile 11 view_userprofile
45 Can add subscription 12 add_subscription
46 Can change subscription 12 change_subscription
47 Can delete subscription 12 delete_subscription
48 Can view subscription 12 view_subscription
49 Can add referral 13 add_referral
50 Can change referral 13 change_referral
51 Can delete referral 13 delete_referral
52 Can view referral 13 view_referral
53 Can add price 14 add_price
54 Can change price 14 change_price
55 Can delete price 14 delete_price
56 Can view price 14 view_price
57 Can add member 15 add_member
58 Can change member 15 change_member
59 Can delete member 15 delete_member
60 Can view member 15 view_member
61 Can add invite 16 add_invite
62 Can change invite 16 change_invite
63 Can delete invite 16 delete_invite
64 Can view invite 16 view_invite
65 Can add customer 17 add_customer
66 Can change customer 17 change_customer
67 Can delete customer 17 delete_customer
68 Can view customer 17 view_customer
69 Can add company 18 add_company
70 Can change company 18 change_company
71 Can delete company 18 delete_company
72 Can view company 18 view_company
73 Can add commission 19 add_commission
74 Can change commission 19 change_commission
75 Can delete commission 19 delete_commission
76 Can view commission 19 view_commission
77 Can add asset 20 add_asset
78 Can change asset 20 change_asset
79 Can delete asset 20 delete_asset
80 Can view asset 20 view_asset
81 Can add user details 21 add_userdetails
82 Can change user details 21 change_userdetails
83 Can delete user details 21 delete_userdetails
84 Can view user details 21 view_userdetails
85 Can add Token 22 add_token
86 Can change Token 22 change_token
87 Can delete Token 22 delete_token
88 Can view Token 22 view_token
89 Can add token 23 add_tokenproxy
90 Can change token 23 change_tokenproxy
91 Can delete token 23 delete_tokenproxy
92 Can view token 23 view_tokenproxy
96 Can add company 18 custom_add_company
97 Can change company 18 custom_change_company
98 Can delete company 18 custom_delete_company
\.
--
-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: reflio_user
--
COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin;
1 pbkdf2_sha256$390000$5zxxc9MwesoLTL3xF9sMkB$RNzCYmm20glgWKbgF1q0AlF3F7iCs5JJ2fzJE1Jo5rg= 2024-04-22 15:42:31.945863-04 f milad.mohammadint@proton.me f t 2024-04-22 15:42:31.701216-04
10 pbkdf2_sha256$390000$rt1KCdAQ6nNvVguK335kuH$asUAp9IRlcNpNdzGQdZEq5xZyU/g4zM4RaMXHpTTLxc= 2024-04-24 17:28:05.686928-04 f testid4@testid4.com f t 2024-04-24 17:27:43.971639-04
11 pbkdf2_sha256$390000$dix8YyveqLDOqYkbzvM9cE$zwe6sQ4lcCVbbuXCtOdud7wGcTTx6u5XJbKBkCRu8t8= 2024-04-24 17:29:43.756866-04 f testid5@testid5.com f t 2024-04-24 17:29:26.66116-04
13 pbkdf2_sha256$390000$HUWCtHbczsgJQS0FLNdh1O$wKrVJKzqZRAEwhMryrdzJ08bqWu3VfBN0XK5qFYpbVM= 2024-05-23 16:40:23.091532-04 f testid7@testid7.com f t 2024-05-23 16:40:22.812001-04
3 pbkdf2_sha256$390000$08w0FXJzqEk3mW1vsMaz8s$Lh1Kz+MxS/3OG8H2qeY+LxgKyCQkRBa6+l3xw18IKFY= 2024-04-24 07:51:04.036496-04 f mehrbodrocks@test.com f t 2024-04-22 16:58:04-04
4 pbkdf2_sha256$390000$uDCzdLyJXNIiOGnjVFiWDc$y8kYdlTlLrGNOJ071xMAMmrTTacaqtd9kqCZ+5JUmL4= 2024-04-25 05:35:22.659552-04 t reflio_user reflio_user@test.com t t 2024-04-23 16:24:10.9439-04
5 pbkdf2_sha256$390000$eo7w3quurJWcb0p1JxI6h6$KMUNMkSHMHeBXE9ddIt2n3//W4PgjLr0AspV5Q1pBIU= 2024-04-24 08:39:47.195465-04 f tester@test.com f t 2024-04-24 08:09:01.543871-04
6 pbkdf2_sha256$390000$wdWq0YELUew0lAn5uPCUuo$8qYJRvdwVKg7CA4I/4OB6zEjIm1v2+oi+ujQ6w5Qou4= \N f teamid@teamid.com f t 2024-04-24 09:17:57.605079-04
7 pbkdf2_sha256$390000$kGHgDysehTGuERbZsCdE5P$Pu0TFQvE0NwnmUiAasgdY4chIOBSSOtcLAeQmwzgPDI= 2024-04-24 09:20:43.677987-04 f teamid2@teamid2.com f t 2024-04-24 09:20:43.449566-04
2 pbkdf2_sha256$390000$9jW5XR4iUW0Pmvai1ecNYv$0xLtJqHHjn4CuCHI9lq8lT9WYCgl/4d2/7C25YSyLKY= 2024-04-24 09:29:38.666218-04 f test@test.com f t 2024-04-22 15:44:19.487554-04
12 pbkdf2_sha256$390000$bs6eTyP7icBY1TOCP9WCet$htXLW3ffXd3K8+d1XiyARhvON/BNTDUnQ+ptCAHlgZ8= 2024-05-27 13:04:10.80765-04 f testid6@testid6.com f t 2024-04-24 17:32:49-04
8 pbkdf2_sha256$390000$bqgB2gQa6Hw74xN4xxaE4B$TakqVOlDALAzEdmQg2sDqJmeqp344TZKA+0kuRt436Y= 2024-04-24 16:35:02.335469-04 f testid2@testid2.com f t 2024-04-24 09:29:56.96173-04
9 pbkdf2_sha256$390000$MtonrwmikNaTcBrwM6ws67$lON5H5RlkVGI3lCpfxx/MJvzwC6jpiFZKNtku/Eo6TQ= 2024-04-24 17:22:43.300305-04 f testid3@testid3.com f t 2024-04-24 17:18:04.585194-04
\.
--
-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: reflio_user
--
COPY public.auth_user_groups (id, user_id, group_id) FROM stdin;
1 13 1
\.
--
-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: reflio_user
--
COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin;
1 3 1
2 3 2
3 3 3
4 3 4
5 3 5
6 3 6
7 3 7
8 3 8
9 3 9
10 3 10
11 3 11
12 3 12
13 3 13
14 3 14
15 3 15
16 3 16
17 3 17
18 3 18
19 3 19
20 3 20
21 3 21
22 3 22
23 3 23
24 3 24
25 3 25
26 3 26
27 3 27
28 3 28
29 3 29
30 3 30
31 3 31
32 3 32
33 3 33
34 3 34
35 3 35
36 3 36
37 3 37
38 3 38
39 3 39
40 3 40
41 3 41
42 3 42
43 3 43
44 3 44
45 3 45
46 3 46
47 3 47
48 3 48
49 3 49
50 3 50
51 3 51
52 3 52
53 3 53
54 3 54
55 3 55
56 3 56
57 3 57
58 3 58
59 3 59
60 3 60
61 3 61
62 3 62
63 3 63
64 3 64
65 3 65
66 3 66
67 3 67
68 3 68
69 3 69
70 3 70
71 3 71
72 3 72
73 3 73
74 3 74
75 3 75
76 3 76
77 3 77
78 3 78
79 3 79
80 3 80
81 3 81
82 3 82
83 3 83
84 3 84
85 3 85
86 3 86
87 3 87
88 3 88
89 3 89
90 3 90
91 3 91
92 3 92
93 12 96
94 12 97
95 12 98
96 12 69
97 12 70
98 12 71
99 12 72
100 12 1
101 12 2
102 12 3
103 12 4
104 12 5
105 12 6
106 12 7
107 12 8
108 12 9
109 12 10
110 12 11
111 12 12
112 12 13
113 12 14
114 12 15
115 12 16
116 12 17
117 12 18
118 12 19
119 12 20
120 12 21
121 12 22
122 12 23
123 12 24
124 12 25
125 12 26
126 12 27
127 12 28
128 12 29
129 12 30
130 12 31
131 12 32
132 12 33
133 12 34
134 12 35
135 12 36
136 12 37
137 12 38
138 12 39
139 12 40
140 12 41
141 12 42
142 12 43
143 12 44
144 12 45
145 12 46
146 12 47
147 12 48
148 12 49
149 12 50
150 12 51
151 12 52
152 12 53
153 12 54
154 12 55
155 12 56
156 12 57
157 12 58
158 12 59
159 12 60
160 12 61
161 12 62
162 12 63
163 12 64
164 12 65
165 12 66
166 12 67
167 12 68
168 12 73
169 12 74
170 12 75
171 12 76
172 12 77
173 12 78
174 12 79
175 12 80
176 12 81
177 12 82
178 12 83
179 12 84
180 12 85