-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolymathsports.pgsql
2000 lines (1455 loc) · 96.5 KB
/
polymathsports.pgsql
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 12.0 (Ubuntu 12.0-2.pgdg16.04+1)
-- Dumped by pg_dump version 12.0 (Ubuntu 12.0-2.pgdg16.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;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO polymath;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.auth_group_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_group_id_seq OWNER TO polymath;
--
-- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.auth_group_id_seq OWNED BY public.auth_group.id;
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.auth_group_permissions (
id integer NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO polymath;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.auth_group_permissions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_group_permissions_id_seq OWNER TO polymath;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.auth_group_permissions_id_seq OWNED BY public.auth_group_permissions.id;
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: polymath
--
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 polymath;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.auth_permission_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_permission_id_seq OWNER TO polymath;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.auth_permission_id_seq OWNED BY public.auth_permission.id;
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: polymath
--
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(30) 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 polymath;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.auth_user_groups (
id integer NOT NULL,
user_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.auth_user_groups OWNER TO polymath;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.auth_user_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_user_groups_id_seq OWNER TO polymath;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.auth_user_groups_id_seq OWNED BY public.auth_user_groups.id;
--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.auth_user_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_user_id_seq OWNER TO polymath;
--
-- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.auth_user_id_seq OWNED BY public.auth_user.id;
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.auth_user_user_permissions (
id integer NOT NULL,
user_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_user_user_permissions OWNER TO polymath;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.auth_user_user_permissions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_user_user_permissions_id_seq OWNER TO polymath;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.auth_user_user_permissions_id_seq OWNED BY public.auth_user_user_permissions.id;
--
-- Name: customer_support_contactus; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.customer_support_contactus (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
name character varying(100) NOT NULL,
email character varying(200) NOT NULL,
subject character varying(200) NOT NULL,
description text NOT NULL
);
ALTER TABLE public.customer_support_contactus OWNER TO polymath;
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: polymath
--
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 polymath;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.django_admin_log_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.django_admin_log_id_seq OWNER TO polymath;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.django_admin_log_id_seq OWNED BY public.django_admin_log.id;
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: polymath
--
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 polymath;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.django_content_type_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.django_content_type_id_seq OWNER TO polymath;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.django_content_type_id_seq OWNED BY public.django_content_type.id;
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.django_migrations (
id integer 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 polymath;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: polymath
--
CREATE SEQUENCE public.django_migrations_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.django_migrations_id_seq OWNER TO polymath;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: polymath
--
ALTER SEQUENCE public.django_migrations_id_seq OWNED BY public.django_migrations.id;
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: polymath
--
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 polymath;
--
-- Name: models_games; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.models_games (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
name character varying(50) NOT NULL,
status boolean NOT NULL,
sport_id uuid NOT NULL
);
ALTER TABLE public.models_games OWNER TO postgres;
--
-- Name: models_mlalgorithms; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.models_mlalgorithms (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
name character varying(250) NOT NULL,
access character varying(250),
status boolean NOT NULL
);
ALTER TABLE public.models_mlalgorithms OWNER TO postgres;
--
-- Name: models_predictorvarriables; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.models_predictorvarriables (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
name character varying(250) NOT NULL,
access character varying(250),
status boolean NOT NULL,
sport_id uuid NOT NULL
);
ALTER TABLE public.models_predictorvarriables OWNER TO postgres;
--
-- Name: models_sports; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.models_sports (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
name character varying(50) NOT NULL,
status boolean NOT NULL
);
ALTER TABLE public.models_sports OWNER TO postgres;
--
-- Name: models_targetvarriables; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.models_targetvarriables (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
name character varying(50) NOT NULL,
status boolean NOT NULL,
sport_id uuid NOT NULL
);
ALTER TABLE public.models_targetvarriables OWNER TO postgres;
--
-- Name: orders_card; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.orders_card (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
name character varying(30) NOT NULL,
card_number character varying(16) NOT NULL,
expiry_date date NOT NULL,
card_provider character varying(30),
card_logo character varying(100),
status boolean NOT NULL,
card_holder_id integer NOT NULL,
cvv bigint
);
ALTER TABLE public.orders_card OWNER TO polymath;
--
-- Name: static_pages_post; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.static_pages_post (
id integer NOT NULL,
video character varying(200)
);
ALTER TABLE public.static_pages_post OWNER TO postgres;
--
-- Name: static_pages_post_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.static_pages_post_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.static_pages_post_id_seq OWNER TO postgres;
--
-- Name: static_pages_post_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.static_pages_post_id_seq OWNED BY public.static_pages_post.id;
--
-- Name: users_privacypolicy; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users_privacypolicy (
id integer NOT NULL,
policy text
);
ALTER TABLE public.users_privacypolicy OWNER TO postgres;
--
-- Name: users_privacypolicy_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.users_privacypolicy_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_privacypolicy_id_seq OWNER TO postgres;
--
-- Name: users_privacypolicy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.users_privacypolicy_id_seq OWNED BY public.users_privacypolicy.id;
--
-- Name: users_profile; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.users_profile (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
bio text NOT NULL,
location character varying(30) NOT NULL,
twitter character varying(100) NOT NULL,
profile_pic character varying(100),
user_id integer NOT NULL,
stripe_customer_key character varying(100) NOT NULL,
subscription_id character varying(100) NOT NULL,
birth_date date,
subscription_end_date date
);
ALTER TABLE public.users_profile OWNER TO polymath;
--
-- Name: users_subscriptionplan; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.users_subscriptionplan (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
name character varying(30) NOT NULL,
amount integer NOT NULL,
status boolean NOT NULL,
duration interval NOT NULL,
plan_id character varying(200) NOT NULL
);
ALTER TABLE public.users_subscriptionplan OWNER TO polymath;
--
-- Name: users_usersubscriptionorder; Type: TABLE; Schema: public; Owner: polymath
--
CREATE TABLE public.users_usersubscriptionorder (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id uuid NOT NULL,
active boolean NOT NULL,
subscription_plan_id uuid,
user_id integer NOT NULL
);
ALTER TABLE public.users_usersubscriptionorder OWNER TO polymath;
--
-- Name: users_video; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users_video (
id integer NOT NULL,
video text NOT NULL
);
ALTER TABLE public.users_video OWNER TO postgres;
--
-- Name: users_video_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.users_video_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_video_id_seq OWNER TO postgres;
--
-- Name: users_video_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.users_video_id_seq OWNED BY public.users_video.id;
--
-- Name: auth_group id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.auth_group ALTER COLUMN id SET DEFAULT nextval('public.auth_group_id_seq'::regclass);
--
-- Name: auth_group_permissions id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('public.auth_group_permissions_id_seq'::regclass);
--
-- Name: auth_permission id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.auth_permission ALTER COLUMN id SET DEFAULT nextval('public.auth_permission_id_seq'::regclass);
--
-- Name: auth_user id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.auth_user ALTER COLUMN id SET DEFAULT nextval('public.auth_user_id_seq'::regclass);
--
-- Name: auth_user_groups id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.auth_user_groups ALTER COLUMN id SET DEFAULT nextval('public.auth_user_groups_id_seq'::regclass);
--
-- Name: auth_user_user_permissions id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.auth_user_user_permissions ALTER COLUMN id SET DEFAULT nextval('public.auth_user_user_permissions_id_seq'::regclass);
--
-- Name: django_admin_log id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.django_admin_log ALTER COLUMN id SET DEFAULT nextval('public.django_admin_log_id_seq'::regclass);
--
-- Name: django_content_type id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.django_content_type ALTER COLUMN id SET DEFAULT nextval('public.django_content_type_id_seq'::regclass);
--
-- Name: django_migrations id; Type: DEFAULT; Schema: public; Owner: polymath
--
ALTER TABLE ONLY public.django_migrations ALTER COLUMN id SET DEFAULT nextval('public.django_migrations_id_seq'::regclass);
--
-- Name: static_pages_post id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.static_pages_post ALTER COLUMN id SET DEFAULT nextval('public.static_pages_post_id_seq'::regclass);
--
-- Name: users_privacypolicy id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.users_privacypolicy ALTER COLUMN id SET DEFAULT nextval('public.users_privacypolicy_id_seq'::regclass);
--
-- Name: users_video id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.users_video ALTER COLUMN id SET DEFAULT nextval('public.users_video_id_seq'::regclass);
--
-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: polymath
--
COPY public.auth_group (id, name) FROM stdin;
\.
--
-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: polymath
--
COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin;
\.
--
-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: polymath
--
COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin;
1 Can add Subscription Plan 2 add_subscriptionplan
2 Can change Subscription Plan 2 change_subscriptionplan
3 Can delete Subscription Plan 2 delete_subscriptionplan
4 Can view Subscription Plan 2 view_subscriptionplan
5 Can add user subscription order 1 add_usersubscriptionorder
6 Can change user subscription order 1 change_usersubscriptionorder
7 Can delete user subscription order 1 delete_usersubscriptionorder
8 Can view user subscription order 1 view_usersubscriptionorder
9 Can add Profile 3 add_profile
10 Can change Profile 3 change_profile
11 Can delete Profile 3 delete_profile
12 Can view Profile 3 view_profile
13 Can add Card 4 add_card
14 Can change Card 4 change_card
15 Can delete Card 4 delete_card
16 Can view Card 4 view_card
17 Can add ml algorithms 7 add_mlalgorithms
18 Can change ml algorithms 7 change_mlalgorithms
19 Can delete ml algorithms 7 delete_mlalgorithms
20 Can view ml algorithms 7 view_mlalgorithms
21 Can add predictor varriables 8 add_predictorvarriables
22 Can change predictor varriables 8 change_predictorvarriables
23 Can delete predictor varriables 8 delete_predictorvarriables
24 Can view predictor varriables 8 view_predictorvarriables
25 Can add Games 6 add_games
26 Can change Games 6 change_games
27 Can delete Games 6 delete_games
28 Can view Games 6 view_games
29 Can add Sports 9 add_sports
30 Can change Sports 9 change_sports
31 Can delete Sports 9 delete_sports
32 Can view Sports 9 view_sports
33 Can add target varriables 5 add_targetvarriables
34 Can change target varriables 5 change_targetvarriables
35 Can delete target varriables 5 delete_targetvarriables
36 Can view target varriables 5 view_targetvarriables
37 Can add contact us 10 add_contactus
38 Can change contact us 10 change_contactus
39 Can delete contact us 10 delete_contactus
40 Can view contact us 10 view_contactus
41 Can add log entry 11 add_logentry
42 Can change log entry 11 change_logentry
43 Can delete log entry 11 delete_logentry
44 Can view log entry 11 view_logentry
45 Can add group 12 add_group
46 Can change group 12 change_group
47 Can delete group 12 delete_group
48 Can view group 12 view_group
49 Can add permission 14 add_permission
50 Can change permission 14 change_permission
51 Can delete permission 14 delete_permission
52 Can view permission 14 view_permission
53 Can add user 13 add_user
54 Can change user 13 change_user
55 Can delete user 13 delete_user
56 Can view user 13 view_user
57 Can add content type 15 add_contenttype
58 Can change content type 15 change_contenttype
59 Can delete content type 15 delete_contenttype
60 Can view content type 15 view_contenttype
61 Can add session 16 add_session
62 Can change session 16 change_session
63 Can delete session 16 delete_session
64 Can view session 16 view_session
100 Can add post 19 add_post
101 Can change post 19 change_post
102 Can delete post 19 delete_post
103 Can view post 19 view_post
104 Can add videos 20 add_videos
105 Can change videos 20 change_videos
106 Can delete videos 20 delete_videos
107 Can view videos 20 view_videos
108 Can add video 21 add_video
109 Can change video 21 change_video
110 Can delete video 21 delete_video
111 Can view video 21 view_video
112 Can add privacy policy 22 add_privacypolicy
113 Can change privacy policy 22 change_privacypolicy
114 Can delete privacy policy 22 delete_privacypolicy
115 Can view privacy policy 22 view_privacypolicy
\.
--
-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: polymath
--
COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin;
4 pbkdf2_sha256$150000$KdA1xsIo8mBK$itjjqi99USTwohhVyE696BQxBKitYHRegp1Sa0qJJPg= \N f [email protected] Anoop Kumar [email protected] f t 2019-09-17 19:26:17.809305+05:30
5 pbkdf2_sha256$150000$Zx0p4Ti6I1V8$85LPLlSDkSxiwqi1H3nm7WhxqOoIRE04f/KsXwtMysA= \N f [email protected] ultacase [email protected] f t 2019-09-17 19:33:14.87387+05:30
6 pbkdf2_sha256$150000$f8Ub727nDlSC$IyIFuEUjhYK+nnfOmkFYtBLzkSjKutWVty7iegXLsPo= 2019-09-17 20:11:31.000912+05:30 f [email protected] test [email protected] f t 2019-09-17 20:11:30.752779+05:30
7 pbkdf2_sha256$150000$7lz28oEeccCu$IvOKW1zDikXt0xS15MgaF4VV2U31kf2UJ80g8MkoHXU= 2019-09-18 11:16:14.264754+05:30 f [email protected] prateek54555465 [email protected] f t 2019-09-18 11:16:14.048716+05:30
3 pbkdf2_sha256$150000$kBDw5hnAGW5R$/N0l8ZioKdZneLsEz1t+VyfatTjKoeYlg8Rg64XK9Z0= 2019-09-17 19:24:14.045878+05:30 t anoop Anoop [email protected] t t 2019-09-17 19:23:50.113334+05:30
9 pbkdf2_sha256$150000$LjNIUwkzhkGw$S8Q2THFSSD1B/ZjnAewL7Fp9L3KKOwBlimcqRe412/o= 2019-09-20 15:56:19.532377+05:30 f [email protected] Anoop Kumar [email protected] f t 2019-09-20 15:56:19.312426+05:30
11 pbkdf2_sha256$150000$dqImYXnBXRFN$zz2Zq1kXHpNMPqelAnYn2C8U8+weQ5DkLg6g6WixPC4= 2019-09-25 19:18:41.192405+05:30 f [email protected] Prateek Sharma [email protected] f t 2019-09-20 17:26:13.762574+05:30
10 pbkdf2_sha256$150000$TEKXroIdJxzn$/TUCP2R8HNlqOfUopuF6hT67yGt9t3UfdIwx9uiCNpw= 2019-09-20 17:10:47.932433+05:30 f [email protected] oman [email protected] f t 2019-09-20 17:10:47.706974+05:30
12 pbkdf2_sha256$150000$kFkbj16ukIef$OUHmPhdvl9w9fJ5yQ+Vm0AnsJ+OMPpWxLuouGnc5s0A= \N f [email protected] vikrant [email protected] f f 2019-09-21 09:59:05.921593+05:30
31 pbkdf2_sha256$150000$UfsP3aYGTIRe$idjFGs0N3zX5O31JJ7CUuZdF/UNFhToMBVvQLJpOrCs= \N f [email protected] aman [email protected] f f 2019-11-07 11:55:16.620715+05:30
14 pbkdf2_sha256$150000$w12pKEpCLaXP$rxjomBt9mlZaMwym8GX2sev+8QTHT6P2sRFPQdmwVrk= 2019-09-25 15:17:32.379106+05:30 t admin t t 2019-09-24 18:55:26.559257+05:30
23 pbkdf2_sha256$150000$qteRRIUaeZIS$j1v4FttKUqsLTBNp94WawLu/PW7FPmd7wwzL5DBLkHc= 2019-10-02 19:22:03.998732+05:30 f [email protected] Giani [email protected] f t 2019-10-02 19:20:10.339615+05:30
32 pbkdf2_sha256$150000$mLuKEzKWO8AQ$l1G6xe+MQ4++6TjSVaZFDvQNRvUAbjoMWU80FlgbkjM= 2019-11-07 12:14:21.972309+05:30 t test@123 t t 2019-11-07 12:01:59.239548+05:30
24 pbkdf2_sha256$150000$x04DxwT5eN2Y$INpazXCoVrgGsKaB0ZPqqhV7fa19J5kiI/3NMG0Bgcc= \N f [email protected] gfsr [email protected] f f 2019-10-11 11:02:10.061065+05:30
25 pbkdf2_sha256$150000$AL7OdpA8dmyS$lJ8E5JDyd3PigGmie75v/nPWp8riNLS15cb3wZhAQh0= \N f [email protected] fTUVDZtIKMrcxXu [email protected] f f 2019-10-15 00:21:36.883496+05:30
26 pbkdf2_sha256$150000$LUPGT0Bf9ZWh$ykEDT2i+CJiZAXIMbOVTVT5GTDgtD/HklyTGIZJ+Hhk= \N f [email protected] f t 2019-10-26 05:50:10.554222+05:30
13 pbkdf2_sha256$150000$oE8EAoDW1DQe$6M5elq0IMQMMS88PV7N42Mrgw2u/5JWVtzEVutrBDMM= 2019-10-29 16:21:19.696406+05:30 f [email protected] Aman Preet Singh [email protected] f t 2019-09-21 15:25:16.002832+05:30
257 pbkdf2_sha256$150000$el7HaIRmmOjH$0DbLGPtgxIWz5ZtEkqoJGQ4FN/rZg0rM4uJbovGtizA= 2019-11-25 15:19:35.249541+05:30 f [email protected] Akshma [email protected] f t 2019-11-25 15:18:40.540954+05:30
27 pbkdf2_sha256$150000$jKARuHFx0N2D$sgpcki3qdINu7Qd6z3cw9Ia3hpNKtfTutFbKd7bPC5Y= 2019-11-21 17:10:14.289912+05:30 f [email protected] nirupma [email protected] f t 2019-11-05 12:57:32.470149+05:30
269 pbkdf2_sha256$150000$EsM4aypMHqBL$JBbgo0xPhKwg87c84kf2YtrZh/iywApGct3gbil5TVg= \N f [email protected] Akshma [email protected] f f 2019-11-25 18:26:18.341897+05:30
170 pbkdf2_sha256$150000$8wB8irfCL7IB$2C8MjHjJsUDveG2ffAnwM9QwLMLadJlNmKY9PvA5yzM= \N f [email protected] Akshma [email protected] f f 2019-11-20 12:27:28.281926+05:30
56 pbkdf2_sha256$150000$lSHYd2CIVVh0$vG0hYe/zFt/EthuMpBdjnfTe1esapWydmoqIUKKYbTI= \N f [email protected] djcfhrg [email protected] f f 2019-11-14 17:30:51.706946+05:30
260 pbkdf2_sha256$150000$1fA9Pbd37U79$5stthSrMAJTUFfviQislBbB2boR5XYKsuMjJduf3m4w= 2019-11-25 15:31:18.356229+05:30 f [email protected] Akshma [email protected] f t 2019-11-25 15:30:56.640003+05:30
22 pbkdf2_sha256$150000$5IvjwVjUZpXy$ov4L3ZueKjSY5yMGubFZ3qAAtHEYmRrCSlSTmt1QOI8= 2019-11-22 15:38:57.420656+05:30 f [email protected] shivi [email protected] f t 2019-09-25 16:16:29.261638+05:30
68 pbkdf2_sha256$150000$abEThU0WspcX$eKbaus0AZgEHrYAv8/9U4Z60IzfxqAYMX4ZeZUAymcg= \N f [email protected] Akshma [email protected] f f 2019-11-15 12:14:14.92955+05:30
182 pbkdf2_sha256$150000$xpL6uRFLWoJJ$YhCfF+YLILEFzr1erYhSb2llU+XDdcpUvITOmZivQHM= \N f [email protected] Akshma [email protected] f f 2019-11-20 15:00:50.462676+05:30
197 pbkdf2_sha256$150000$CA131JJEk9Nz$s8enIx05eDixS1gvoZb032vDzavCBzpcsLcSkZJKA+s= \N f [email protected] Akshma [email protected] f f 2019-11-20 16:09:22.643228+05:30
258 pbkdf2_sha256$150000$e5tdVZsYQotR$tkCp3fZMivIitBb/8uKZ6OmEtKFclmDC08WWoLgmutA= \N f [email protected] Akshma [email protected] f f 2019-11-25 15:30:25.849191+05:30
261 pbkdf2_sha256$150000$tW0PEVrcnIM3$PfqyrbyFnOtclbkxj2iFk9whOuCR/s1X+PjacCStD4g= 2019-11-25 15:53:39.445471+05:30 f [email protected] Akshma [email protected] f t 2019-11-25 15:53:08.800232+05:30
198 pbkdf2_sha256$150000$obBsmFSRFtu0$3xdgmJd9g218RNxuOVrG10tVrUWSERetymCxPh6Ym0w= \N f [email protected] Akshma [email protected] f f 2019-11-20 16:11:20.96314+05:30
267 pbkdf2_sha256$150000$nOVQp4BQj0vB$ZS2K1oBu5scbGBCBshePxs9dubU2e4WVQ+kCifLOX4I= \N f [email protected] Akshma [email protected] f f 2019-11-25 18:23:15.15837+05:30
270 pbkdf2_sha256$150000$W3VkO70MLtzK$gMymAV9W+oX0V0Ba+ujpp8CbLNGEZ8HEvDOAJp4Iqys= \N f [email protected] Akshma [email protected] f f 2019-11-25 18:26:59.109045+05:30
42 pbkdf2_sha256$150000$xrnxROFMuUCB$EYft94qrehBAmQRZ3L3/4iF9ea0MStCeWWcbbSfquts= \N f [email protected] avantika [email protected] f f 2019-11-13 17:51:34.640542+05:30
189 pbkdf2_sha256$150000$knYG6H2wn8Z5$8VKNLJ382sZuktRojqsWH+KknQVg2F9LZ5QNpBDH4Zo= \N f [email protected] ascxc [email protected] f f 2019-11-20 15:21:14.417779+05:30
276 pbkdf2_sha256$150000$J33TxcVtyUyr$KytiTqqaqvHPgMZL70J27nUHeY43ZoLip7acR9BboZw= 2019-11-26 12:00:36.271336+05:30 f [email protected] Akshma [email protected] f t 2019-11-26 12:00:17.136996+05:30
57 pbkdf2_sha256$150000$LApRvCK97llj$FF0yiEFH3FtlD0unbQgnWTvA/VTC/+3mxDc5GYvpyzA= \N f [email protected] Akshma [email protected] f f 2019-11-14 18:59:21.547552+05:30
65 pbkdf2_sha256$150000$sNijz1w5lNn7$TXf1Yrr3rd+Pdbk9Q/7d0bCvqDf4BLTkZ4DKNs2VpY4= \N f [email protected] mahesh [email protected] f f 2019-11-15 11:06:56.542923+05:30
69 pbkdf2_sha256$150000$jJO3dAOC2Wvp$gbW0dP1z3KEk47bLHKOnrymjYq1WkmMGmU/pxc4z8aM= \N f [email protected] Akshma [email protected] f f 2019-11-15 12:14:55.069559+05:30
73 pbkdf2_sha256$150000$ze47Y30RAV12$u+7/nmlrlOHKQmlpGfnmu2V/3XUx8CG7hfINaVFnzPY= \N f [email protected] Akshma [email protected] f f 2019-11-15 17:59:50.404864+05:30
92 pbkdf2_sha256$150000$2WFmp83l8KrQ$rTj1t0w8y+ZliT+R/zloY6dhiIz1E15CbzngYh7dZYY= \N f [email protected] rkvgnvg [email protected] f f 2019-11-16 15:31:46.221114+05:30
93 pbkdf2_sha256$150000$1wETAAMM6fWp$RothHNEzgHhPnnPqMScrBmTDXn8mEvw7/FMTROxelAA= \N f [email protected] Akshma [email protected] f f 2019-11-16 16:02:45.98807+05:30
94 pbkdf2_sha256$150000$OKmycHq4hcup$ZiHHeE/EdCTqYsdjjP0/v0UM8itc4hOwwNlbPFo/GZQ= \N f [email protected] abhinav [email protected] f f 2019-11-16 16:04:33.887989+05:30
96 pbkdf2_sha256$150000$9WgzCIHiput5$7PV1Xms4pufgMRKRDddWl1kLj4UFinqY9ccOwHKt8jc= \N f [email protected] test [email protected] f f 2019-11-16 16:17:26.381421+05:30
97 pbkdf2_sha256$150000$goZE3ZIQDam2$nYqsezoVzRVWoLjwLqfj0Rwvl4RuwgkTPwhas+cbW+c= \N f [email protected] test [email protected] f f 2019-11-16 16:18:08.110807+05:30
256 pbkdf2_sha256$150000$LPu7xUKYYvwq$H8jxb5bk06WKb12UDlpXQPvp6mHVSFkfBKE+3t8DwEQ= \N f [email protected] Akshma [email protected] f f 2019-11-25 15:16:38.602182+05:30
268 pbkdf2_sha256$150000$COusIqsZvEII$jC89ILnqjo2XtRRxgDVnfDkYzlVPx1vIF33FmSFupgk= \N f [email protected] Akshma [email protected] f f 2019-11-25 18:24:57.411327+05:30
271 pbkdf2_sha256$150000$m2eIX5ngNBOk$k9AoK6k4+uQn0rGIzXQGnmphu2XUBMHjiS7tS5Zfq1g= 2019-11-25 18:30:19.604622+05:30 f [email protected] Akshma [email protected] f t 2019-11-25 18:30:01.105972+05:30
213 pbkdf2_sha256$150000$wohTKfjlDpsG$izjP5NjTaMr4dATkjSfUZUTEMfDhxJwTr2rcRbim1P8= 2019-11-26 11:58:47.872641+05:30 t nirupma t t 2019-11-20 17:42:00.621081+05:30
156 pbkdf2_sha256$150000$o0egxza2Epwv$qOrlrI9Q1i4fITosbJB9KyPB0St828aQhC1+1Frnz9U= \N f [email protected] Akshma [email protected] f f 2019-11-20 11:13:48.96967+05:30
\.
--
-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: polymath
--
COPY public.auth_user_groups (id, user_id, group_id) FROM stdin;
\.
--
-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: polymath
--
COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin;
\.
--
-- Data for Name: customer_support_contactus; Type: TABLE DATA; Schema: public; Owner: polymath
--
COPY public.customer_support_contactus (created, modified, id, name, email, subject, description) FROM stdin;
2019-09-21 16:32:06.952153+05:30 2019-09-21 16:32:06.953914+05:30 713e582a-4202-4ddd-8dec-91fb44542e4d prateek [email protected] test testwerr
2019-09-25 13:18:57.343581+05:30 2019-09-25 13:18:57.345324+05:30 b2cf01d6-cc8b-4c6e-94f7-780f0af288fc shivi [email protected] fdfd fdffd
2019-09-25 13:21:22.353536+05:30 2019-09-25 13:21:22.355453+05:30 aeee24c7-cc91-4aaf-af07-8ee93955094e shivi [email protected] fdfd fdffd
2019-09-25 13:21:34.706947+05:30 2019-09-25 13:21:34.708635+05:30 b4dad0f6-15aa-4aef-8210-369ed2c5f957 shivi [email protected] fdfd fdffd
2019-09-25 13:23:37.573187+05:30 2019-09-25 13:23:37.574742+05:30 b38207c6-9d60-460a-8de8-9461fc0e9b2b shivi [email protected] sdas dsds
2019-09-25 13:25:49.301815+05:30 2019-09-25 13:25:49.303532+05:30 2252f4bc-2de9-43ce-9ea7-4536e25a230c shivi [email protected] sdas dsds
2019-09-25 13:26:00.472119+05:30 2019-09-25 13:26:00.473676+05:30 d6f35275-a3dc-488c-9958-e43e0eb25b61 shivi [email protected] sdas dsds
2019-09-25 14:43:47.447779+05:30 2019-09-25 14:43:47.449521+05:30 1deed616-0fe1-45fe-9a12-96b1a5c7a017 shivi [email protected] sdas dsds
2019-09-25 14:54:39.29599+05:30 2019-09-25 14:54:39.297511+05:30 f342400a-189e-49b3-bb48-1ec26b7bf039 shivi [email protected] fdfds fdff
2019-10-02 19:58:08.685587+05:30 2019-10-02 19:58:08.687176+05:30 ee7c742e-1934-4a11-9d3b-f4c78211e4d3 Geraldgooms [email protected] Beatport Music Releases Hello, \r\nMP3s Club Music for DJs, More Info: http://0daymusic.orgt \r\nDownload 0DAY-MP3s Private Server, For DJs Electronika Musica \r\n \r\nRegards, \r\n0DAY Music
2019-10-03 03:10:36.519873+05:30 2019-10-03 03:10:36.521467+05:30 f133abf6-170a-4261-aadd-b228da00a57d Geraldgooms [email protected] Beatport Music Releases Hello, \r\nMP3s Club Music for DJs, More Info: http://0daymusic.orgt \r\nDownload 0DAY-MP3s Private Server, For DJs Electronika Musica \r\n \r\nRegards, \r\n0DAY Music
2019-10-11 10:10:56.980604+05:30 2019-10-11 10:10:56.983163+05:30 4bf732df-dccf-4a9e-a501-8d7d1b288a4c dfweaf efewf wefwe efed
2019-10-11 10:11:19.093532+05:30 2019-10-11 10:11:19.095185+05:30 3d1e08bc-5392-40de-9017-cdbd62262b0c werf erfwe ef fef
2019-10-11 10:11:37.478253+05:30 2019-10-11 10:11:37.479929+05:30 57a00f72-e589-4495-a057-004da6a3a996 fdsg rg rt rte
2019-10-11 10:58:11.939437+05:30 2019-10-11 10:58:11.941139+05:30 67034964-0d58-44ab-823c-b9bc7b08bd5c kjmkl gli lh lhlh
2019-10-11 10:58:25.970198+05:30 2019-10-11 10:58:25.971829+05:30 2c7c65c9-fc7a-4230-899d-889a927f697a gfsr dfgdfg dfgdg fgdg
2019-10-11 10:59:45.936289+05:30 2019-10-11 10:59:45.937998+05:30 8a344816-1004-4e38-bf93-8eb3546f5205 klkh hlkh hkl hkl
2019-10-11 11:00:08.304492+05:30 2019-10-11 11:00:08.306131+05:30 bbff1170-7047-4745-a6f1-cb7e43118272 ioloi uioui iu ol
2019-10-15 00:20:43.304908+05:30 2019-10-15 00:20:43.307656+05:30 ea7b8252-dedd-4dcf-9de8-257b9c0fcdeb dkNGeuxnFCRtB [email protected] SWmtzXbVgknABjT IjXbKwuHTRAC
2019-10-15 00:21:17.127825+05:30 2019-10-15 00:21:17.129494+05:30 f0f10040-1ccb-4ba3-ae08-fe3cf65d41ff xSdpivKb [email protected] hQLVBwZcEDmMjz etZEsJfcwG
2019-10-26 03:07:58.620526+05:30 2019-10-26 03:07:58.622696+05:30 a4ba0e43-6038-4bf3-b29a-e6bb364a2b96 Winston [email protected] Your site, quick question... Hey guys, I just wanted to see if you need anything in the way of site editing/code fixing/programming, unique blog post material, extra traffic, social media management, etc. I have quite a few ways I can set all of this and do thhis for you. Don't mean to impose, was just curious, I've been doing thhis for some time and was just curious if you needed an extra hand. I can even do Wordpress and other related tasks (you name it).\r\n\r\nPS - I'm here in the states, no need to outsource :-)\r\n\r\nWinston R.\r\n1.708.320.3171
2019-10-27 06:17:32.793596+05:30 2019-10-27 06:17:32.795402+05:30 54733e6f-6477-4250-8060-4c90c73d0d5c Eric Jones [email protected] Do You Want Up to 100X More Conversions? Hey,\r\n\r\nYou have a website polymathsports.com, right?\r\n\r\nOf course you do. I am looking at your website now.\r\n\r\nIt gets traffic every day – that you’re probably spending $2 / $4 / $10 or more a click to get. Not including all of the work you put into creating social media, videos, blog posts, emails, and so on.\r\n\r\nSo you’re investing seriously in getting people to that site.\r\n\r\nBut how’s it working? Great? Okay? Not so much?\r\n\r\nIf that answer could be better, then it’s likely you’re putting a lot of time, effort, and money into an approach that’s not paying off like it should.\r\n\r\nNow… imagine doubling your lead conversion in just minutes… In fact, I’ll go even better.\r\n \r\nYou could actually get up to 100X more conversions!\r\n\r\nI’m not making this up. As Chris Smith, best-selling author of The Conversion Code says: Speed is essential - there is a 100x decrease in Leads when a Lead is contacted within 14 minutes vs being contacted within 5 minutes.\r\n\r\nHe’s backed up by a study at MIT that found the odds of contacting a lead will increase by 100 times if attempted in 5 minutes or less.\r\n\r\nAgain, out of the 100s of visitors to your website, how many actually call to become clients?\r\n\r\nWell, you can significantly increase the number of calls you get – with ZERO extra effort.\r\n\r\nTalkWithCustomer makes it easy, simple, and fast – in fact, you can start getting more calls today… and at absolutely no charge to you.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive to find out how.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS: Don’t just take my word for it, TalkWithCustomer works:\r\nEMA has been looking for ways to reach out to an audience. TalkWithCustomer so far is the most direct call of action. It has produced above average closing ratios and we are thrilled. Thank you for providing a real and effective tool to generate REAL leads. - P MontesDeOca.\r\nBest of all, act now to get a no-cost 14-Day Test Drive – our gift to you just for giving TalkWithCustomer a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start converting up to 100X more leads today!\r\n\r\nIf you'd like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=polymathsports.com\r\n
2019-11-11 10:46:16.157189+05:30 2019-11-11 10:46:16.201672+05:30 10b90a24-27b0-4fc7-8c2f-c4cb3342dc4a nirupma [email protected] fghfghvvf fdbffhfhfhff
2019-11-11 15:25:22.70482+05:30 2019-11-11 15:25:22.731271+05:30 19ffe58e-9990-450d-9b0a-9c6a322fcbb0 test [email protected] ghgsdv vdhsfvhscvf
2019-11-11 15:34:45.546723+05:30 2019-11-11 15:34:45.573491+05:30 8275f978-6cc0-4d34-a5f5-9188f6f36088 fsdfv [email protected] fghfghvvf fsdvgag
2019-11-11 15:40:26.209793+05:30 2019-11-11 15:40:26.243076+05:30 31bec315-6616-4214-b00e-b935a3a5c4ff sdfvgsdv [email protected] dsfsdfv sdvdsvsv
2019-11-11 15:46:28.794117+05:30 2019-11-11 15:46:28.830255+05:30 2f2c4db2-b206-47e5-8d1b-5379a2075227 dvhbsdhv [email protected] fcvbhsv gvehbvjuhs
2019-11-11 19:02:27.236041+05:30 2019-11-11 19:02:27.280062+05:30 f1f25ad1-d04f-49b2-a378-8e89c9188240 sdvsd [email protected] dsvfsdv b fsbb
2019-11-11 19:03:29.357556+05:30 2019-11-11 19:03:29.376525+05:30 d349c602-9f0e-4d09-829f-0ad06d6f0fa5 sdvsd [email protected] dsvfsdv b fsbb
2019-11-12 12:30:04.424252+05:30 2019-11-12 12:30:04.501955+05:30 2a216b64-c155-4f76-8a29-1e376ded908f dsvdscv [email protected] rfghh hthdrehh
\.
--
-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: polymath
--
COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin;
1 2019-09-17 19:24:39.442375+05:30 a832bf5b-2543-468f-b8eb-b9c0819fd93a Free 1 [{"added": {}}] 1 3
2 2019-09-17 19:24:57.048437+05:30 7f0b8b63-2006-47d5-a375-2db8208b343e Weekly 1 [{"added": {}}] 1 3
3 2019-09-17 19:25:24.852909+05:30 211ea5af-65b3-4a74-8674-01d34f3da0f2 Monthly 1 [{"added": {}}] 1 3
4 2019-09-17 19:25:52.825614+05:30 0082f7c4-fff2-44d1-a547-92f0ce2b43c6 Yearly 1 [{"added": {}}] 1 3
5 2019-09-24 19:14:16.387205+05:30 a832bf5b-2543-468f-b8eb-b9c0819fd93a FREE 2 [{"changed": {"fields": ["name"]}}] 1 14
6 2019-09-25 15:18:32.987967+05:30 d2a42116-d55e-49c5-a7c8-2134f034d12d [email protected] 3 2 14
7 2019-09-25 15:18:32.990055+05:30 87b629e7-75b9-4f3b-a8ae-a1e93fd97b26 [email protected] 3 2 14
8 2019-09-25 15:18:32.991389+05:30 36552933-421e-4833-9cfe-4b909308b361 [email protected] 3 2 14
9 2019-09-25 15:19:00.478029+05:30 b55aa0a1-f027-4ae9-ba04-aecbc10d76e1 [email protected] 3 2 14
10 2019-09-25 15:19:00.480033+05:30 52841cad-6cc7-4d61-bcfd-f9ab4c35dfa7 [email protected] 3 2 14
11 2019-09-25 15:21:30.074838+05:30 18 [email protected] 3 6 14
12 2019-09-25 15:21:55.897561+05:30 17 [email protected] 3 6 14
13 2019-09-25 15:21:55.899386+05:30 8 [email protected] 3 6 14
14 2019-09-25 15:21:55.908465+05:30 16 [email protected] 3 6 14
15 2019-09-25 15:22:09.823228+05:30 15 [email protected] 3 6 14
16 2019-09-25 15:54:51.755348+05:30 19 [email protected] 3 6 14
17 2019-09-25 15:56:19.558247+05:30 20 [email protected] 3 6 14
18 2019-09-25 16:14:57.70523+05:30 21 [email protected] 3 6 14
19 2019-11-07 12:27:13.084684+05:30 28 [email protected] 2 [{"changed": {"fields": ["password"]}}] 6 32
222 2019-11-20 17:47:59.698699+05:30 214 [email protected] 3 13 213
223 2019-11-20 17:51:31.457151+05:30 215 [email protected] 3 13 213
224 2019-11-20 18:09:52.850427+05:30 216 [email protected] 3 13 213
225 2019-11-20 18:11:59.156725+05:30 217 [email protected] 3 13 213
226 2019-11-21 12:36:00.267136+05:30 218 [email protected] 3 13 213
227 2019-11-21 12:36:00.319584+05:30 220 [email protected] 3 13 213
228 2019-11-21 12:36:00.327556+05:30 219 [email protected] 3 13 213
229 2019-11-21 12:45:25.886683+05:30 222 [email protected] 3 13 213
230 2019-11-21 12:45:25.900143+05:30 223 [email protected] 3 13 213
231 2019-11-21 12:45:25.90844+05:30 224 [email protected] 3 13 213
232 2019-11-21 12:50:35.681481+05:30 225 [email protected] 3 13 213
233 2019-11-21 12:50:35.694027+05:30 221 [email protected] 3 13 213
234 2019-11-21 13:04:23.674902+05:30 226 [email protected] 3 13 213
235 2019-11-21 13:08:01.620201+05:30 227 [email protected] 3 13 213
236 2019-11-21 13:10:59.801183+05:30 228 [email protected] 3 13 213
237 2019-11-21 13:20:00.55271+05:30 229 [email protected] 3 13 213
238 2019-11-21 13:23:50.636357+05:30 230 [email protected] 3 13 213
239 2019-11-21 13:26:33.123489+05:30 231 [email protected] 3 13 213
240 2019-11-21 13:29:32.708127+05:30 232 [email protected] 3 13 213
241 2019-11-21 17:44:50.691863+05:30 234 [email protected] 3 13 213
242 2019-11-21 17:48:18.359869+05:30 235 [email protected] 3 13 213
243 2019-11-21 17:49:26.066396+05:30 236 [email protected] 3 13 213
244 2019-11-21 17:51:46.562102+05:30 237 [email protected] 3 13 213
245 2019-11-21 17:57:03.904709+05:30 239 [email protected] 3 13 213
246 2019-11-21 17:59:38.325467+05:30 240 [email protected] 3 13 213
247 2019-11-21 18:10:46.643023+05:30 241 [email protected] 3 13 213
248 2019-11-21 18:11:53.0182+05:30 243 [email protected] 3 13 213
249 2019-11-21 18:34:16.611387+05:30 244 [email protected] 3 13 213
250 2019-11-22 11:59:40.153371+05:30 6 sample.mp4 2 [{"changed": {"fields": ["video"]}}] 21 213
251 2019-11-22 12:05:45.436392+05:30 5 sample.mp4 2 [{"changed": {"fields": ["video"]}}] 21 213
252 2019-11-22 12:05:53.17957+05:30 4 sample.mp4 2 [{"changed": {"fields": ["video"]}}] 21 213
253 2019-11-22 12:06:02.041751+05:30 3 sample.mp4 2 [{"changed": {"fields": ["video"]}}] 21 213
254 2019-11-22 12:06:11.305283+05:30 2 sample.mp4 2 [{"changed": {"fields": ["video"]}}] 21 213
255 2019-11-22 12:06:18.695207+05:30 1 sample.mp4 2 [{"changed": {"fields": ["video"]}}] 21 213
256 2019-11-22 15:28:20.529938+05:30 245 [email protected] 3 13 213
257 2019-11-22 15:31:07.192305+05:30 246 [email protected] 3 13 213