-
Notifications
You must be signed in to change notification settings - Fork 3
/
07-03-2019.pgsql
1408 lines (989 loc) · 48.6 KB
/
07-03-2019.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 11.1
-- Dumped by pg_dump version 11.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 client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: app1_company; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.app1_company (
"cId" character varying(50) NOT NULL,
"cName" character varying(50) NOT NULL,
"cPass" character varying(50) NOT NULL,
"cEmail" character varying(50) NOT NULL,
"cType" character varying(50) NOT NULL,
"cSize" integer NOT NULL,
"cLoc" character varying(50) NOT NULL
);
ALTER TABLE public.app1_company OWNER TO postgres;
--
-- Name: app1_employee; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.app1_employee (
emp_id character varying(50) NOT NULL,
name character varying(50) NOT NULL,
password character varying(50) NOT NULL,
email character varying(50) NOT NULL,
dept character varying(50) NOT NULL,
ques_1_id character varying(5) NOT NULL,
ans_1 character varying(50) NOT NULL,
ques_2_id character varying(5) NOT NULL,
ans_2 character varying(50) NOT NULL,
gender character varying(50) NOT NULL,
phone character varying(20) NOT NULL
);
ALTER TABLE public.app1_employee OWNER TO postgres;
--
-- Name: app1_products; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.app1_products (
"pId" character varying(50) NOT NULL,
"pName" character varying(50) NOT NULL,
"pPrize" integer NOT NULL
);
ALTER TABLE public.app1_products OWNER TO postgres;
--
-- Name: app1_tcp; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.app1_tcp (
id integer NOT NULL,
qty integer NOT NULL,
"cId" character varying(50) NOT NULL,
"pId" character varying(50) NOT NULL,
"tId" character varying(50) NOT NULL
);
ALTER TABLE public.app1_tcp OWNER TO postgres;
--
-- Name: app1_tcp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.app1_tcp_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.app1_tcp_id_seq OWNER TO postgres;
--
-- Name: app1_tcp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.app1_tcp_id_seq OWNED BY public.app1_tcp.id;
--
-- Name: app1_temp; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.app1_temp (
temp_id integer NOT NULL,
name character varying(50) NOT NULL
);
ALTER TABLE public.app1_temp OWNER TO postgres;
--
-- Name: app1_transactions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.app1_transactions (
"tId" character varying(50) NOT NULL,
amt integer NOT NULL,
"dateTime" timestamp with time zone NOT NULL,
remarks character varying(50) NOT NULL
);
ALTER TABLE public.app1_transactions OWNER TO postgres;
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(80) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO postgres;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.auth_group_id_seq OWNED BY public.auth_group.id;
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.auth_group_permissions_id_seq OWNED BY public.auth_group_permissions.id;
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.auth_permission_id_seq OWNED BY public.auth_permission.id;
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
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: postgres
--
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 postgres;
--
-- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.auth_user_id_seq OWNED BY public.auth_user.id;
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.auth_user_user_permissions_id_seq OWNED BY public.auth_user_user_permissions.id;
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.django_admin_log_id_seq OWNED BY public.django_admin_log.id;
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.django_content_type_id_seq OWNED BY public.django_content_type.id;
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.django_migrations_id_seq OWNED BY public.django_migrations.id;
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: postgres
--
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 postgres;
--
-- Name: app1_tcp id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.app1_tcp ALTER COLUMN id SET DEFAULT nextval('public.app1_tcp_id_seq'::regclass);
--
-- Name: auth_group id; Type: DEFAULT; Schema: public; Owner: postgres
--
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: postgres
--
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: postgres
--
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: postgres
--
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: postgres
--
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: postgres
--
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: postgres
--
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: postgres
--
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: postgres
--
ALTER TABLE ONLY public.django_migrations ALTER COLUMN id SET DEFAULT nextval('public.django_migrations_id_seq'::regclass);
--
-- Data for Name: app1_company; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.app1_company ("cId", "cName", "cPass", "cEmail", "cType", "cSize", "cLoc") FROM stdin;
C0001 Google Google1213 [email protected] Technical 300 Bhopal
C0002 Microsoft Microsoft123 [email protected] Technical 20 Bangalore
C0003 Oracle Oracle123 [email protected] Marketing 40 Pune
C0005 Dell EMC d7j2L07VT4ZybPf8EdsMQz+gZ0tm6LuZkXAzQqGRBfs= [email protected] Technical 30 Domlur
C0004 Onco DkNqbUscqEiIaXRFYkn4S4w1RhOHmufTPqAzij5cKzY= [email protected] Technical 79 Salarpuria Satva, Koramangala, Bangalore
\.
--
-- Data for Name: app1_employee; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.app1_employee (emp_id, name, password, email, dept, ques_1_id, ans_1, ques_2_id, ans_2, gender, phone) FROM stdin;
TCH007 Akshat Trivedi THRmZMWmo53GSD69JPNPo4FOAucixdWWxWxZJYnZP9Q= [email protected] DJ 1 Mal 1 dsa male 7000079368
TCH008 Akshat Trivedi VFOz8OR/ZFFXGmEV7OVfpUAs/31c3gqhMqrloqv6g+0= [email protected] Gamer 1 mo 1 dasasc male 7000079368
TCH081 Akshat Trivedi X6V/at019poicvvLL2H/vYEm07ofH0jO8Z4gGs1Gotw= dnsakl dsa 1 camsp 1 nasdckl Male 7000079368
TCH013 Harry Potter riH0TQ+xQwcW6Vn2N0NQog6FLF2YgfgSFkSsE4P2/ZY= [email protected] Check 1 25Dec 1 Hogwarts Male 10101001
TCH023 Abhinav Shandilya FeEaaxk7J370C6s5i+EErTwR2X5lcILKvjy47HlyM+c= [email protected] Dahi 1 Krishna Priya 1 Anganwadi Male 461284721
TCH077 Mohinish Nandwana dAJ74Rc5GJGi68aOs0RPvYWSAMjmgy2c3n9aKwxf77Y= [email protected] PWD 1 abcd 1 pqr male 127402174021
TCH011 Ashish Gaud Z/rlwB7BtPgZwL1HbeEsViVl6Ueun4spcxYMaVCb3iI= ashishgmail Technician 1 Mera Aashu 1 Sant mary Male 427874827
\.
--
-- Data for Name: app1_products; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.app1_products ("pId", "pName", "pPrize") FROM stdin;
P0002 CPU 2000
P0003 Mouse 200
P0004 Hard Disk 4000
P0005 Floppy 400
P0006 USB 1000
P0007 Monitor 4000
P0010 Motherboard 20000
P0011 dsanl 890
P0001 Laptop 40000
\.
--
-- Data for Name: app1_tcp; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.app1_tcp (id, qty, "cId", "pId", "tId") FROM stdin;
2 10 C0002 P0001 T00002
3 20 C0002 P0002 T00002
4 70 C0003 P0005 T00005
6 3 C0003 P0006 T00005
1 4 C0001 P0010 T00001
8 8 C0001 P0006 T00001
9 23 C0001 P0004 T00001
10 1 C0001 P0010 T00004
11 5 C0001 P0006 T00004
12 3 C0004 P0006 T00003
13 1 C0004 P0002 T00003
14 5 C0001 P0003 T00007
15 5 C0002 P0003 T00008
16 1 C0002 P0006 T00008
\.
--
-- Data for Name: app1_temp; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.app1_temp (temp_id, name) FROM stdin;
2 FAkshat
3 FAkshat
1 Mohan
50 FAkshat
30 FAkshat
\.
--
-- Data for Name: app1_transactions; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.app1_transactions ("tId", amt, "dateTime", remarks) FROM stdin;
T00001 124 2019-02-12 01:39:44.05461+05:30 TIMEZONE PROBLEM
T00002 412 2019-02-12 01:40:11.934205+05:30 FINAL CHECK
T00005 20000 2019-02-17 17:59:12.068107+05:30 Good sales
T00004 25000 2019-03-03 06:26:52.019481+05:30 New Google Transaction
T00003 10000 2019-03-03 17:21:25.882207+05:30 Impressive
T00007 1000 2019-03-03 17:24:18.485362+05:30 Easy To buy
T00008 2000 2019-03-03 17:27:06.585251+05:30 Good Work
\.
--
-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_group (id, name) FROM stdin;
\.
--
-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin;
\.
--
-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: postgres
--
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 employee 7 add_employee
26 Can change employee 7 change_employee
27 Can delete employee 7 delete_employee
28 Can view employee 7 view_employee
29 Can add temp 8 add_temp
30 Can change temp 8 change_temp
31 Can delete temp 8 delete_temp
32 Can view temp 8 view_temp
33 Can add products 9 add_products
34 Can change products 9 change_products
35 Can delete products 9 delete_products
36 Can view products 9 view_products
37 Can add company 10 add_company
38 Can change company 10 change_company
39 Can delete company 10 delete_company
40 Can view company 10 view_company
41 Can add transactions 11 add_transactions
42 Can change transactions 11 change_transactions
43 Can delete transactions 11 delete_transactions
44 Can view transactions 11 view_transactions
45 Can add tcp 12 add_tcp
46 Can change tcp 12 change_tcp
47 Can delete tcp 12 delete_tcp
48 Can view tcp 12 view_tcp
\.
--
-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin;
2 pbkdf2_sha256$120000$9wsqDIVxeIfq$W2XImxMKQmjlyKyKJKEX8irkhhODgLAa2FBNfYWU2vQ= 2019-03-03 04:37:30.571738+05:30 t akki7 Akshat Trivedi [email protected] t t 2019-02-10 03:28:49+05:30
\.
--
-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: postgres
--
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: postgres
--
COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin;
\.
--
-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: postgres
--
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-02-10 03:36:45.94566+05:30 TCH001 TCH001;Akshat Trivedi;Akshat Trivedi;[email protected];Trivedi7;Coder;7000079368;4;blahbalh;2;lollol 1 [{"added": {}}] 7 2
2 2019-02-10 03:36:49.411509+05:30 TCH001 TCH001;Akshat Trivedi;Akshat Trivedi;[email protected];Trivedi7;Coder;7000079368;4;blahbalh;2;lollol 2 [] 7 2
3 2019-02-10 03:37:35.172355+05:30 2 akki7 2 [{"changed": {"fields": ["first_name", "last_name", "last_login"]}}] 4 2
4 2019-02-11 20:37:16.076193+05:30 C0001 C0001;Wipro Turbo;Wipro1234;[email protected];Finance;20;Bangalore 1 [{"added": {}}] 10 2
5 2019-02-11 20:46:14.515915+05:30 5 C0001;Wipro Turbo;Wipro1234;[email protected];Finance;20;Bangalore;CPU;200 1 [{"added": {}}] 9 2
6 2019-02-11 20:46:23.435178+05:30 5 C0001;Wipro Turbo;Wipro1234;[email protected];Finance;20;Bangalore;CPU;200 2 [] 9 2
7 2019-02-11 20:46:52.900164+05:30 6 C0001;Wipro Turbo;Wipro1234;[email protected];Finance;20;Bangalore;Monitor;203 1 [{"added": {}}] 9 2
8 2019-02-11 20:53:50.690856+05:30 C0002 C0002;Infosys;Infosys1223;[email protected];Technical;43;Mysore 1 [{"added": {}}] 10 2
9 2019-02-11 20:53:53.518013+05:30 C0002 C0002;Infosys;Infosys1223;[email protected];Technical;43;Mysore 2 [] 10 2
10 2019-02-11 21:05:07.348702+05:30 7 C0002;Infosys;Infosys1223;[email protected];Technical;43;Mysore;LAN Cables;50 1 [{"added": {}}] 9 2
11 2019-02-11 21:07:51.11853+05:30 C0003 C0003;Google;Google1213;[email protected];Technical;100;Bangalore 1 [{"added": {}}] 10 2
12 2019-02-11 21:08:19.09297+05:30 8 C0003;Google;Google1213;[email protected];Technical;100;Bangalore;Laptops;40000 1 [{"added": {}}] 9 2
13 2019-02-11 21:09:04.369128+05:30 1 C0003;Google;Google1213;[email protected];Technical;100;Bangalore;100000 1 [{"added": {}}] 11 2
14 2019-02-12 00:39:17.071631+05:30 T00001 T00001;10000;2019-02-11 19:09:17.071104+00:00;Better Results 1 [{"added": {}}] 11 2
15 2019-02-12 00:49:01.815817+05:30 T00001 T00001;10000;2019-02-11 19:09:17.071104+00:00;Better Results 3 11 2
16 2019-02-12 00:49:21.825814+05:30 T00001 T00001;10000;2019-02-11 19:19:21.825412+00:00;Good Quality 1 [{"added": {}}] 11 2
17 2019-02-12 00:50:35.489957+05:30 T00002 T00002;1;2019-02-11 19:20:35.489224+00:00;xz 1 [{"added": {}}] 11 2
18 2019-02-12 00:56:51.291214+05:30 T00003 T00003;10021;2019-02-12 00:56:25+05:30;Hello NEw Migrations 1 [{"added": {}}] 11 2
19 2019-02-12 01:05:26.036995+05:30 TCH004 TCH004;4214;2019-02-12 01:05:13+05:30;check 1 [{"added": {}}] 11 2
20 2019-02-12 01:16:06.173063+05:30 T00004 T00004;217;2019-02-12 01:15:20+05:30;Check Again 1 [{"added": {}}] 11 2
21 2019-02-12 01:17:10.018923+05:30 TCH0005 TCH0005;12734;2019-02-12 01:16:49+05:30;Why 1 [{"added": {}}] 11 2
22 2019-02-12 01:24:21.185592+05:30 sad sad;412;2019-02-11 19:54:21.184419+00:00;saddas 1 [{"added": {}}] 11 2
23 2019-02-12 01:24:48.99271+05:30 HI Again HI Again;2141;2019-02-11 19:54:48.992302+00:00;Time Error Check 1 [{"added": {}}] 11 2
24 2019-02-12 01:30:52.085759+05:30 FINAL FINAL;124;2019-02-12 01:30:52.085641;Correct 1 [{"added": {}}] 11 2
25 2019-02-12 01:38:40.717377+05:30 TCH0007 TCH0007;57;2019-02-12 01:38:40.717308;TIMEZONE PROBLEM 1 [{"added": {}}] 11 2
26 2019-02-12 01:39:31.925006+05:30 TCH004 TCH004;4214;2019-02-12 01:05:13;check 3 11 2
27 2019-02-12 01:39:31.944777+05:30 TCH0007 TCH0007;57;2019-02-12 01:38:40.716994;TIMEZONE PROBLEM 3 11 2
28 2019-02-12 01:39:31.96115+05:30 TCH0005 TCH0005;12734;2019-02-12 01:16:49;Why 3 11 2
29 2019-02-12 01:39:31.977958+05:30 T00004 T00004;217;2019-02-12 01:15:20;Check Again 3 11 2
30 2019-02-12 01:39:32.053168+05:30 T00003 T00003;10021;2019-02-12 00:56:25;Hello NEw Migrations 3 11 2
31 2019-02-12 01:39:32.070099+05:30 T00002 T00002;1;2019-02-12 00:50:35.489224;xz 3 11 2
32 2019-02-12 01:39:32.086528+05:30 T00001 T00001;10000;2019-02-12 00:49:21.825412;Good Quality 3 11 2
33 2019-02-12 01:39:32.103396+05:30 sad sad;412;2019-02-12 01:24:21.184419;saddas 3 11 2
34 2019-02-12 01:39:32.120004+05:30 HI Again HI Again;2141;2019-02-12 01:24:48.992302;Time Error Check 3 11 2
35 2019-02-12 01:39:32.136432+05:30 FINAL FINAL;124;2019-02-12 01:30:52.085322;Correct 3 11 2
36 2019-02-12 01:39:44.055021+05:30 T00001 T00001;124;2019-02-12 01:39:44.054610;TIMEZONE PROBLEM 1 [{"added": {}}] 11 2
37 2019-02-12 01:40:11.934638+05:30 T00002 T00002;412;2019-02-12 01:40:11.934205;FINAL CHECK 1 [{"added": {}}] 11 2
38 2019-02-12 01:43:06.126672+05:30 C0001 C0001;Google;Google1213;[email protected];Technical;300;Bhopal 1 [{"added": {}}] 10 2
39 2019-02-12 01:43:34.19381+05:30 P0001 P0001;Laptops;40000 1 [{"added": {}}] 9 2
40 2019-02-12 01:43:52.614622+05:30 1 C0001;Google;Google1213;[email protected];Technical;300;Bhopal;P0001;Laptops;40000;T00002;412;2019-02-12 01:40:11.934205;FINAL CHECK;4 1 [{"added": {}}] 12 2
41 2019-02-16 22:15:30.936038+05:30 TCH077 TCH077;Mohinish Nandwana;Male;[email protected];Mohinish123;Coder;2930284379;1;abc;2;pqr 1 [{"added": {}}] 7 2
42 2019-02-16 22:16:46.769432+05:30 TCH077 TCH077;Mohinish Nandwana;Male;[email protected];Mohinish123;Coder;2930284379;1;abc;2;pqr 3 7 2
43 2019-02-16 22:16:46.977786+05:30 TCH001 TCH001;Akshat Trivedi;Akshat Trivedi;[email protected];Trivedi7;Coder;7000079368;4;blahbalh;2;lollol 3 7 2
44 2019-02-17 17:44:07.324837+05:30 P0002 P0002;CPU;2000 1 [{"added": {}}] 9 2
45 2019-02-17 17:44:23.453187+05:30 P0003 P0003;Mouse;200 1 [{"added": {}}] 9 2
46 2019-02-17 17:44:40.838676+05:30 Keyboard Keyboard;RAM;2000 1 [{"added": {}}] 9 2
47 2019-02-17 17:45:11.947241+05:30 P0004 P0004;Hard Disk;4000 1 [{"added": {}}] 9 2
48 2019-02-17 17:45:29.106085+05:30 P0005 P0005;Floppy;400 1 [{"added": {}}] 9 2
49 2019-02-17 17:45:44.374619+05:30 P0006 P0006;USB;1000 1 [{"added": {}}] 9 2
50 2019-02-17 17:46:34.980378+05:30 P00007 P00007;Monitor;4000 1 [{"added": {}}] 9 2
51 2019-02-17 17:47:15.461242+05:30 P0007 P0007;Monitor;4000 2 [{"changed": {"fields": ["pId"]}}] 9 2
52 2019-02-17 17:47:36.244509+05:30 P00007 P00007;Monitor;4000 3 9 2
53 2019-02-17 17:47:36.273933+05:30 Keyboard Keyboard;RAM;2000 3 9 2
54 2019-02-17 17:48:26.546707+05:30 C0002 C0002;Microsoft;Microsoft123;[email protected];Technical;20;Bangalore 1 [{"added": {}}] 10 2
55 2019-02-17 17:49:23.478927+05:30 C0003 C0003;Oracle;Oracle123;[email protected];Marketing;40;Pune 1 [{"added": {}}] 10 2
56 2019-02-17 17:57:35.439353+05:30 2 C0002;Microsoft;Microsoft123;[email protected];Technical;20;Bangalore;P0001;Laptops;40000;T00002;412;2019-02-12 01:40:11.934205;FINAL CHECK;10 1 [{"added": {}}] 12 2
57 2019-02-17 17:57:53.948069+05:30 3 C0002;Microsoft;Microsoft123;[email protected];Technical;20;Bangalore;P0002;CPU;2000;T00002;412;2019-02-12 01:40:11.934205;FINAL CHECK;20 1 [{"added": {}}] 12 2
58 2019-02-17 17:59:12.06847+05:30 T00005 T00005;20000;2019-02-17 17:59:12.068107;Good sales 1 [{"added": {}}] 11 2
59 2019-02-18 00:24:18.289501+05:30 4 C0003;Oracle;Oracle123;[email protected];Marketing;40;Pune;P0005;Floppy;400;T00005;20000;2019-02-17 17:59:12.068107;Good sales;70 1 [{"added": {}}] 12 2
60 2019-02-18 00:24:47.120078+05:30 5 C0003;Oracle;Oracle123;[email protected];Marketing;40;Pune;P0007;Monitor;4000;T00001;124;2019-02-12 01:39:44.054610;TIMEZONE PROBLEM;2 1 [{"added": {}}] 12 2
61 2019-02-18 00:25:02.937396+05:30 6 C0003;Oracle;Oracle123;[email protected];Marketing;40;Pune;P0006;USB;1000;T00005;20000;2019-02-17 17:59:12.068107;Good sales;3 1 [{"added": {}}] 12 2
62 2019-02-18 00:26:38.338327+05:30 7 C0003;Oracle;Oracle123;[email protected];Marketing;40;Pune;P0006;USB;1000;T00005;20000;2019-02-17 17:59:12.068107;Good sales;70 1 [{"added": {}}] 12 2
63 2019-03-03 04:39:49.456688+05:30 5 C0003;Oracle;Oracle123;[email protected];Marketing;40;Pune;P0007;Monitor;4000;T00001;124;2019-02-12 01:39:44.054610;TIMEZONE PROBLEM;2 3 12 2
64 2019-03-03 04:40:26.457151+05:30 1 C0001;Google;Google1213;[email protected];Technical;300;Bhopal;P0010;Motherboard;20000;T00001;124;2019-02-12 01:39:44.054610;TIMEZONE PROBLEM;4 2 [{"changed": {"fields": ["pId", "tId"]}}] 12 2
65 2019-03-03 04:40:41.846742+05:30 1 C0001;Google;Google1213;[email protected];Technical;300;Bhopal;P0010;Motherboard;20000;T00001;124;2019-02-12 01:39:44.054610;TIMEZONE PROBLEM;4 2 [] 12 2
66 2019-03-03 04:40:57.363699+05:30 8 C0001;Google;Google1213;[email protected];Technical;300;Bhopal;P0006;USB;1000;T00001;124;2019-02-12 01:39:44.054610;TIMEZONE PROBLEM;8 1 [{"added": {}}] 12 2
67 2019-03-03 04:41:17.612464+05:30 9 C0001;Google;Google1213;[email protected];Technical;300;Bhopal;P0004;Hard Disk;4000;T00001;124;2019-02-12 01:39:44.054610;TIMEZONE PROBLEM;23 1 [{"added": {}}] 12 2
68 2019-03-03 06:26:52.021304+05:30 T00004 T00004;25000;2019-03-03 06:26:52.019481;New Google Transaction 1 [{"added": {}}] 11 2
69 2019-03-03 06:35:51.505015+05:30 10 C0001;Google;Google1213;[email protected];Technical;300;Bhopal;P0010;Motherboard;20000;T00004;25000;2019-03-03 06:26:52.019481;New Google Transaction;1 1 [{"added": {}}] 12 2
70 2019-03-03 06:36:13.875469+05:30 11 C0001;Google;Google1213;[email protected];Technical;300;Bhopal;P0006;USB;1000;T00004;25000;2019-03-03 06:26:52.019481;New Google Transaction;5 1 [{"added": {}}] 12 2
71 2019-03-03 17:21:25.882808+05:30 T00003 T00003;10000;2019-03-03 17:21:25.882207;Impressive 1 [{"added": {}}] 11 2
72 2019-03-03 17:22:03.970955+05:30 12 C0004;Onco;DkNqbUscqEiIaXRFYkn4S4w1RhOHmufTPqAzij5cKzY=;onco.com;Web Development;79;Salarpuria Satva, Koramangala, Bangalore;P0006;USB;1000;T00003;10000;2019-03-03 17:21:25.882207;Impressive;3 1 [{"added": {}}] 12 2
73 2019-03-03 17:22:25.093611+05:30 13 C0004;Onco;DkNqbUscqEiIaXRFYkn4S4w1RhOHmufTPqAzij5cKzY=;onco.com;Web Development;79;Salarpuria Satva, Koramangala, Bangalore;P0002;CPU;2000;T00003;10000;2019-03-03 17:21:25.882207;Impressive;1 1 [{"added": {}}] 12 2
74 2019-03-03 17:24:18.4858+05:30 T00007 T00007;1000;2019-03-03 17:24:18.485362;Easy To buy 1 [{"added": {}}] 11 2
75 2019-03-03 17:25:28.31808+05:30 14 C0001;Google;Google1213;[email protected];Technical;300;Bhopal;P0003;Mouse;200;T00007;1000;2019-03-03 17:24:18.485362;Easy To buy;5 1 [{"added": {}}] 12 2
76 2019-03-03 17:27:06.58556+05:30 T00008 T00008;2000;2019-03-03 17:27:06.585251;Good Work 1 [{"added": {}}] 11 2
77 2019-03-03 17:27:48.984966+05:30 15 C0002;Microsoft;Microsoft123;[email protected];Technical;20;Bangalore;P0003;Mouse;200;T00008;2000;2019-03-03 17:27:06.585251;Good Work;5 1 [{"added": {}}] 12 2
78 2019-03-03 17:28:16.291528+05:30 16 C0002;Microsoft;Microsoft123;[email protected];Technical;20;Bangalore;P0006;USB;1000;T00008;2000;2019-03-03 17:27:06.585251;Good Work;1 1 [{"added": {}}] 12 2
79 2019-03-03 18:12:24.428105+05:30 P0001 P0001;Laptop;40000 2 [{"changed": {"fields": ["pName"]}}] 9 2
80 2019-03-03 18:16:31.182237+05:30 7 C0003;Oracle;Oracle123;[email protected];Marketing;40;Pune;P0006;USB;1000;T00005;20000;2019-02-17 17:59:12.068107;Good sales;70 3 12 2
81 2019-03-03 18:21:26.681381+05:30 C0004 C0004;Onco;DkNqbUscqEiIaXRFYkn4S4w1RhOHmufTPqAzij5cKzY=;[email protected];Technical;79;Salarpuria Satva, Koramangala, Bangalore 2 [{"changed": {"fields": ["cEmail", "cType"]}}] 10 2
\.
--
-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_content_type (id, app_label, model) FROM stdin;
1 admin logentry
2 auth permission
3 auth group
4 auth user
5 contenttypes contenttype
6 sessions session
7 app1 employee
8 app1 temp
9 app1 products
10 app1 company
11 app1 transactions
12 app1 tcp
\.
--
-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_migrations (id, app, name, applied) FROM stdin;
1 contenttypes 0001_initial 2019-02-10 02:04:25.304295+05:30
2 auth 0001_initial 2019-02-10 02:04:26.466084+05:30
3 admin 0001_initial 2019-02-10 02:04:26.791415+05:30
4 admin 0002_logentry_remove_auto_add 2019-02-10 02:04:26.828133+05:30
5 admin 0003_logentry_add_action_flag_choices 2019-02-10 02:04:26.870661+05:30
6 app1 0001_initial 2019-02-10 02:04:26.958106+05:30
7 app1 0002_auto_20190205_0853 2019-02-10 02:04:27.05051+05:30
8 app1 0003_auto_20190208_1920 2019-02-10 02:04:27.099753+05:30
9 app1 0004_auto_20190208_1932 2019-02-10 02:04:27.18361+05:30
10 app1 0005_auto_20190208_1932 2019-02-10 02:04:27.204556+05:30
11 app1 0006_temp 2019-02-10 02:04:27.291714+05:30
12 app1 0007_auto_20190209_0719 2019-02-10 02:04:27.313262+05:30
13 app1 0008_auto_20190209_1517 2019-02-10 02:04:27.459358+05:30
14 contenttypes 0002_remove_content_type_name 2019-02-10 02:04:27.532186+05:30
15 auth 0002_alter_permission_name_max_length 2019-02-10 02:04:27.565994+05:30
16 auth 0003_alter_user_email_max_length 2019-02-10 02:04:27.617057+05:30
17 auth 0004_alter_user_username_opts 2019-02-10 02:04:27.654571+05:30
18 auth 0005_alter_user_last_login_null 2019-02-10 02:04:27.707981+05:30
19 auth 0006_require_contenttypes_0002 2019-02-10 02:04:27.725362+05:30
20 auth 0007_alter_validators_add_error_messages 2019-02-10 02:04:27.765894+05:30
21 auth 0008_alter_user_username_max_length 2019-02-10 02:04:27.875569+05:30
22 auth 0009_alter_user_last_name_max_length 2019-02-10 02:04:27.925334+05:30
23 sessions 0001_initial 2019-02-10 02:04:28.150894+05:30
24 app1 0009_company_products_transactions 2019-02-11 20:22:29.789873+05:30
25 app1 0010_auto_20190211_1513 2019-02-11 20:43:23.744317+05:30
26 app1 0011_auto_20190211_1536 2019-02-11 21:06:38.588469+05:30
27 app1 0009_auto_20190211_1853 2019-02-12 00:27:49.686606+05:30
28 app1 0010_auto_20190212_0055 2019-02-12 00:55:42.009021+05:30
29 app1 0011_auto_20190212_0104 2019-02-12 01:04:23.91692+05:30
30 app1 0012_auto_20190212_0116 2019-02-12 01:16:24.141323+05:30
31 app1 0013_auto_20190212_0121 2019-02-12 01:21:14.271677+05:30
32 app1 0014_auto_20190212_0122 2019-02-12 01:22:06.225505+05:30
33 app1 0015_auto_20190212_0124 2019-02-12 01:24:09.534124+05:30
\.
--
-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_session (session_key, session_data, expire_date) FROM stdin;
6i3k0kpapd1kgx5bed4cl08e2vcdm6bx MTVlNzIwNWZlOTFjYTg2ODY0OTNkOTQwNzY2MDMyOGY2MDk1MzhjZTp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyM2FmODY3ODdmOTljZTVhMmYxNTFjY2YxMWE1YjU1ODBhNTIxMGZiIn0= 2019-02-26 00:50:11.203347+05:30
qoyo1w0u0c9lcxtaui9stcyr1edg14xt MTVlNzIwNWZlOTFjYTg2ODY0OTNkOTQwNzY2MDMyOGY2MDk1MzhjZTp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyM2FmODY3ODdmOTljZTVhMmYxNTFjY2YxMWE1YjU1ODBhNTIxMGZiIn0= 2019-03-17 04:37:30.889234+05:30
\.
--
-- Name: app1_tcp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.app1_tcp_id_seq', 16, true);
--
-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_group_id_seq', 1, false);
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 1, false);
--
-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_permission_id_seq', 48, true);
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 1, false);
--
-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_user_id_seq', 2, true);
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 1, false);
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_admin_log_id_seq', 81, true);
--
-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_content_type_id_seq', 12, true);
--
-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_migrations_id_seq', 33, true);
--
-- Name: app1_company app1_company_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.app1_company
ADD CONSTRAINT app1_company_pkey PRIMARY KEY ("cId");
--
-- Name: app1_employee app1_employee_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.app1_employee
ADD CONSTRAINT app1_employee_pkey PRIMARY KEY (emp_id);
--
-- Name: app1_products app1_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.app1_products
ADD CONSTRAINT app1_products_pkey PRIMARY KEY ("pId");
--
-- Name: app1_tcp app1_tcp_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.app1_tcp
ADD CONSTRAINT app1_tcp_pkey PRIMARY KEY (id);