-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbkupp.dmp
2128 lines (1716 loc) · 92.8 KB
/
bkupp.dmp
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.1
-- Dumped by pg_dump version 12.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: postgres
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) 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: mainapp_bkstat; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.mainapp_bkstat (
bkst text NOT NULL
);
ALTER TABLE public.mainapp_bkstat OWNER TO postgres;
--
-- Name: mainapp_bookavail; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.mainapp_bookavail (
bk text NOT NULL
);
ALTER TABLE public.mainapp_bookavail OWNER TO postgres;
--
-- Name: mainapp_bookslent; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.mainapp_bookslent (
"AccesssionNumber_id" integer NOT NULL,
"Lent_on" date NOT NULL,
status_id text NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.mainapp_bookslent OWNER TO postgres;
--
-- Name: mainapp_libraryallbooks; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.mainapp_libraryallbooks (
"AccesssionNumber" integer NOT NULL,
"Title" text NOT NULL,
"Author" text NOT NULL,
"Availability_id" text NOT NULL
);
ALTER TABLE public.mainapp_libraryallbooks OWNER TO postgres;
--
-- Name: mainapp_userprofileinfo; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.mainapp_userprofileinfo (
id integer NOT NULL,
phone character varying(10) NOT NULL,
semester character varying(1),
user_id integer NOT NULL
);
ALTER TABLE public.mainapp_userprofileinfo OWNER TO postgres;
--
-- Name: mainapp_userprofileinfo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.mainapp_userprofileinfo_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.mainapp_userprofileinfo_id_seq OWNER TO postgres;
--
-- Name: mainapp_userprofileinfo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.mainapp_userprofileinfo_id_seq OWNED BY public.mainapp_userprofileinfo.id;
--
-- 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);
--
-- Name: mainapp_userprofileinfo id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.mainapp_userprofileinfo ALTER COLUMN id SET DEFAULT nextval('public.mainapp_userprofileinfo_id_seq'::regclass);
--
-- 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 user profile info 7 add_userprofileinfo
26 Can change user profile info 7 change_userprofileinfo
27 Can delete user profile info 7 delete_userprofileinfo
28 Can view user profile info 7 view_userprofileinfo
29 Can add library all books 8 add_libraryallbooks
30 Can change library all books 8 change_libraryallbooks
31 Can delete library all books 8 delete_libraryallbooks
32 Can view library all books 8 view_libraryallbooks
33 Can add books lent 9 add_bookslent
34 Can change books lent 9 change_bookslent
35 Can delete books lent 9 delete_bookslent
36 Can view books lent 9 view_bookslent
37 Can add bookavail 10 add_bookavail
38 Can change bookavail 10 change_bookavail
39 Can delete bookavail 10 delete_bookavail
40 Can view bookavail 10 view_bookavail
41 Can add bkstat 11 add_bkstat
42 Can change bkstat 11 change_bkstat
43 Can delete bkstat 11 delete_bkstat
44 Can view bkstat 11 view_bkstat
\.
--
-- 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;
19 argon2$argon2i$v=19$m=512,t=2,p=2$V1BzRDBXNmdrdjYz$JaGL5ElHUZv+NXmHNtce7A 2020-06-07 00:25:28+05:30 t winstonpais Winston Pais [email protected] t t 2020-06-04 01:31:57+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;
28 2020-06-04 01:32:53.503411+05:30 5 winston 3 4 19
29 2020-06-04 14:45:23.13302+05:30 2 2 Cryptography and network security 2 [{"changed": {"fields": ["Availability"]}}] 8 19
30 2020-06-06 19:31:37.712794+05:30 3 3 Digital Image Processing 2 [{"changed": {"fields": ["Availability"]}}] 8 19
31 2020-06-07 00:26:10.782396+05:30 19 winstonpais 2 [{"changed": {"fields": ["First name", "Last name"]}}] 4 19
32 2020-06-07 00:26:45.206214+05:30 15 winstonpais 1 [{"added": {}}] 7 19
\.
--
-- 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 mainapp userprofileinfo
8 mainapp libraryallbooks
9 mainapp bookslent
10 mainapp bookavail
11 mainapp bkstat
\.
--
-- 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 2020-03-16 21:51:14.011603+05:30
2 auth 0001_initial 2020-03-16 21:51:14.17473+05:30
3 admin 0001_initial 2020-03-16 21:51:14.360646+05:30
4 admin 0002_logentry_remove_auto_add 2020-03-16 21:51:14.397344+05:30
5 admin 0003_logentry_add_action_flag_choices 2020-03-16 21:51:14.406085+05:30
6 contenttypes 0002_remove_content_type_name 2020-03-16 21:51:14.428533+05:30
7 auth 0002_alter_permission_name_max_length 2020-03-16 21:51:14.436348+05:30
8 auth 0003_alter_user_email_max_length 2020-03-16 21:51:14.447079+05:30
9 auth 0004_alter_user_username_opts 2020-03-16 21:51:14.467571+05:30
10 auth 0005_alter_user_last_login_null 2020-03-16 21:51:14.47834+05:30
11 auth 0006_require_contenttypes_0002 2020-03-16 21:51:14.480259+05:30
12 auth 0007_alter_validators_add_error_messages 2020-03-16 21:51:14.489045+05:30
13 auth 0008_alter_user_username_max_length 2020-03-16 21:51:14.515424+05:30
14 auth 0009_alter_user_last_name_max_length 2020-03-16 21:51:14.527107+05:30
15 auth 0010_alter_group_name_max_length 2020-03-16 21:51:14.53689+05:30
16 auth 0011_update_proxy_permissions 2020-03-16 21:51:14.545651+05:30
17 sessions 0001_initial 2020-03-16 21:51:14.562277+05:30
18 mainapp 0001_initial 2020-04-17 12:28:15.907611+05:30
19 mainapp 0002_libraryallbooks 2020-05-12 06:55:12.90845+05:30
20 mainapp 0003_bookslent 2020-05-26 10:50:04.191415+05:30
21 mainapp 0004_bookavail 2020-05-26 10:50:04.215351+05:30
22 mainapp 0005_delete_bookavail 2020-05-26 10:50:04.235263+05:30
23 mainapp 0006_bookavail 2020-05-26 10:50:04.252218+05:30
24 mainapp 0007_delete_bookavail 2020-05-26 10:50:04.268174+05:30
25 mainapp 0008_bookavail 2020-05-26 10:54:19.543173+05:30
26 mainapp 0009_auto_20200526_1055 2020-05-26 10:55:31.174883+05:30
27 mainapp 0010_bkstat 2020-05-26 11:03:18.33339+05:30
28 mainapp 0011_auto_20200526_1106 2020-05-26 11:06:59.171344+05:30
29 mainapp 0012_auto_20200526_2025 2020-05-26 20:26:02.201731+05:30
30 mainapp 0013_auto_20200606_1932 2020-06-06 19:32:38.16168+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;
5qpzhyciyo58dvzeg922uhp81iud5n2b OTgzYzJlMTAzZWM0YzA1MTNjNGRhZmNjN2FkNTI1MjlhNTQwMjdkZjp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJmYjQyM2RhMzhkN2I3YzQ3MjZjYzM3MmU1MzlmOTcwMDNkN2ExNzY0In0= 2020-05-01 13:59:19.48195+05:30
hz4sfpn5fgsbxn7l3pizeymx9m5lu49o MTlkZDk2OTI5NGRlMDE0M2E0ODY1M2Q3MGIxZWRjYzZlMWEyMjdmMzp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkwMDM5YWVhYzFjNmI3Yjc0OTU1M2VjMmYyMDZmZDhmYmUwM2NlMCJ9 2020-06-21 00:25:28.811156+05:30
5tpagoioon87otx8vzehtsbvcltfckmf Zjk0ZDAwMWI0NzdmOGU3MjdmYzg1ZDZkZjk4ODBlN2Y1OWI5OWYxZjp7Il9hdXRoX3VzZXJfaWQiOiI1IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4NWMzYTBiY2I5Y2NjOGVmNDZkMTUzMmI2YWUwM2QyMDJhOTdhOWUzIn0= 2020-06-18 00:03:05.927643+05:30
\.
--
-- Data for Name: mainapp_bkstat; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.mainapp_bkstat (bkst) FROM stdin;
Pending
Confirmed
\.
--
-- Data for Name: mainapp_bookavail; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.mainapp_bookavail (bk) FROM stdin;
nan
AVAILABLE
\.
--
-- Data for Name: mainapp_bookslent; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.mainapp_bookslent ("AccesssionNumber_id", "Lent_on", status_id, user_id) FROM stdin;
\.
--
-- Data for Name: mainapp_libraryallbooks; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.mainapp_libraryallbooks ("AccesssionNumber", "Title", "Author", "Availability_id") FROM stdin;
1 The 8051 microcontroller and embedded systems Mohammed Ali Mazzidi, Janice G Mazadi nan
5 Data Structures and Algorithm Analysis in C++ Markallen Weiss AVAILABLE
6 Visual Modelling with Rational Rose 2002 and UML Jerry Quatrini AVAILABLE
7 Genetic Algorithms David E Goldberg AVAILABLE
8 Biomedical Digital Signal Processing Willis J Tompkins AVAILABLE
9 Fundamentals of Embedded Software Daniel W Lewis AVAILABLE
10 Digital Lab Primer K A Krishnamurthy AVAILABLE
11 The C programming Language Brian Kerningham, Dennis Ritche AVAILABLE
12 The art of Computer programming vol-3 Donald E Knuth AVAILABLE
13 The art of Computer programming vol-1 Donald E Knuth AVAILABLE
14 The art of Computer programming vol-2 Donald E Knuth AVAILABLE
15 Algorithms + data structures = programs Nicklans Wirth AVAILABLE
16 Artificial Intelligence Eugine Charmionk, Drew McDermott AVAILABLE
17 The UNIX programming environment Brian Kerningham, Rob Pike AVAILABLE
18 Digital Image Processing Nick Efford AVAILABLE
19 Optical Networks Vylers Black AVAILABLE
20 Visual Basic .NET Shirish Chavan AVAILABLE
21 Use case modelling Kurt Bittner, Ian Spence AVAILABLE
23 Artificial Intelligence George R Luger AVAILABLE
24 The UML reference manual James Rumbaugh, Ivan Jacobson AVAILABLE
25 Internet working with TCP/IP - vol 3 Douglas E Connar, David Stevans AVAILABLE
26 Internet working with TCP/IP - vol 2 Douglas E Connar, David Stevans AVAILABLE
27 Adaptive Filter Theory Simon Haykin AVAILABLE
28 Speech and Language Processing Daniel Jurafsky, James Martin AVAILABLE
29 Computer Networks Douglas E Comer AVAILABLE
30 Computer Graphics Foley AVAILABLE
31 Multimedia Systems John F K Butord AVAILABLE
32 Data structures and Algorithm Analysis in C Mark Allen Weiss AVAILABLE
33 Turbo C++ (User's guide) Borland International AVAILABLE
34 Advanced Microprocessors Atul P Godse AVAILABLE
35 The essence of compilers Robin Hunter AVAILABLE
36 The essence of Computer Graphics Peter Cooley AVAILABLE
37 Fundamentals of Digital Image Processing Anil K Jain AVAILABLE
38 Wireless Digital Communications Dr Kamilo Fehen AVAILABLE
39 Wireless Communication Networks William Stallings AVAILABLE
40 IBM PC Assembly Language and Programming Peter Abel AVAILABLE
41 The C puzzle book Alan Fever AVAILABLE
42 Enterprize modelling with UML Chris Marshall AVAILABLE
43 Mobile and wireless design essentials Martyn Mallick AVAILABLE
44 OOP with C++ M P Bhave, Patekar AVAILABLE
45 Internet working with TCP/IP - vol 3 Douglas E Cooner, David Steven AVAILABLE
46 Principles of Mobile Computing Uwe Hansmann, Lather Mark AVAILABLE
47 The art of Software Architectures Stephen Albin AVAILABLE
48 Data Communications, Computer Networks and Open Systems Fred Halsalt AVAILABLE
49 The XML handbook Charles E Goldfarl, Paul Prescod AVAILABLE
50 Data communications and distributed networks Vylers Black AVAILABLE
51 Structured Computer organization Andrew S Tannenbaum AVAILABLE
52 XML and ASP .NET Kirk Allen Evans, Ashwin Kamanna, Joel Muller AVAILABLE
53 UML -2 Bible Tom Pender AVAILABLE
54 Assembly Language William B Jones AVAILABLE
55 Computer Algorithms - Introduction to Design and Analysis Sara Baase Allen Van Gelder AVAILABLE
56 Multimedia Communications Fred Halsalt AVAILABLE
57 Professional C# Simon Robinson AVAILABLE
58 Fundamentals of Neural Networks Laurence Fausett AVAILABLE
59 Artificial Neural Networks Yagnanarayana AVAILABLE
60 Advanced Microprocessors A P Godse , D A Godse AVAILABLE
61 Advanced Microprocessors A P Godse , D A Godse AVAILABLE
62 Computer Organization A P Godse , D A Godse AVAILABLE
63 Computer Organization A P Godse , D A Godse AVAILABLE
64 Computer Organization P R Devale AVAILABLE
65 Computer Organization P R Devale AVAILABLE
66 Data communications and distributed networks Vylers Black AVAILABLE
67 Theory of Computer Science K P Mishra, N Chandrasekeran AVAILABLE
68 SONET ISDH & ATM Stamatios V, Kartalopoulos AVAILABLE
69 Electronic Circuits R D Sudhakar Sammuel, U B Mahadevaswamy Nattavasu AVAILABLE
70 Electronic Circuits R D Sudhakar Sammuel, U B Mahadevaswamy Nattavasu AVAILABLE
71 Thinking of C++ Sunil K Pandey AVAILABLE
72 Object Oriented programming with C++ T S B Sudarshan AVAILABLE
73 Computer Concepts and C programming K Chandrasekaran AVAILABLE
74 Computer Organization L Krishnanda AVAILABLE
75 Data Structures with C A A Puntambekar AVAILABLE
76 Logic Design R D Sudhakar Sammuel AVAILABLE
77 Java 2 - The Complete Reference Herbert Schildt AVAILABLE
78 C - The Complete Reference Herbert Schildt AVAILABLE
79 Programming with Java E Balaguruswamy AVAILABLE
80 Software Engineering Ian Sommerville AVAILABLE
81 C++ Primer Stanley B Lippman, Joser Logioc AVAILABLE
82 Object Oriented programming with C++ E Balaguruswamy AVAILABLE
83 Computer Organization Earl Hamacher AVAILABLE
84 The design of Unix Operating System Maurice J Bach AVAILABLE
85 System Software Leland L Beck AVAILABLE
86 Communication Networks Alberto Leon Garcia AVAILABLE
87 Microprocessors and Interfacing Douglas V Hall AVAILABLE
88 The Intel Microprocessors Barry B Brey AVAILABLE
4 Embedded LINUX Craig Hollabaugh AVAILABLE
89 Lex and Yacc John R Levine nan
90 Discrete Event System Simulation Jarry Bants, John Carson AVAILABLE
91 Discrete Event System Simulation Jarry Bants, John Carson AVAILABLE
92 Procedural Elements of Computer Graphics David E Rogers AVAILABLE
93 Data Structures and Algorithms Alfred V Aho, John Hoperoft AVAILABLE
94 Introduction to Automata Theory, Languages and Computation John Hoperoft, Rajeev Motwani AVAILABLE
95 Operating Systems Concepts Silberschatz AVAILABLE
96 Advanced Microprocessors Daniel Jabale nan
97 Software Engineering Roger Pressman AVAILABLE
98 The design and analysis of alsorithms Anany AVAILABLE
99 Computer Graphics Zhigang Xiang, Roy AVAILABLE
100 Compilers Alfred Aho, Ravi Sethi AVAILABLE
101 Compilers Alfred Aho, Ravi Sethi AVAILABLE
102 Compiuter Algorithms Sara Baase, Allen Van Gelder AVAILABLE
103 Programming with ANSI C E Balaguruswamy AVAILABLE
104 Programming with ANSI C E Balaguruswamy AVAILABLE
105 C++ The Complete Reference Herbert Schildt AVAILABLE
106 Data Structures using C/C++ Yedidyah Langsam AVAILABLE
107 Advanced Microprocessors and Peripherals A K Ray, K M Bhurchandi AVAILABLE
108 Advanced Microprocessors and Peripherals A K Ray, K M Bhurchandi AVAILABLE
109 Graph Theory Narsingh Des AVAILABLE
110 Programming Languages Ravi Sethi AVAILABLE
111 Programming Languages Ravi Sethi AVAILABLE
112 Fundamentals of Computer Algorithms Ellis Horowitz, Sartaj AVAILABLE
113 Computer Graphics C Version Donald Heam, Pauline Baker AVAILABLE
114 Computer Graphics C Version Donald Heam, Pauline Baker AVAILABLE
115 Advanced Programming in the UNIX environment W Richard Stevens AVAILABLE
116 Advanced Programming in the UNIX environment W Richard Stevens AVAILABLE
117 The design and analysis of computer algorithms Aho, Hoperoft, Ullman AVAILABLE
118 Unix Concepts and Applications Sumithaba Das AVAILABLE
119 Computer Networks Andrew S Tannenbaum AVAILABLE
120 Computer Networks Andrew S Tannenbaum AVAILABLE
121 Communication Networks Alberto Leon Grocia AVAILABLE
122 Computer Organization Carl Hamacher AVAILABLE
123 Object Oriented Systems Development Ali Bahrami AVAILABLE
124 Object Oriented Analysis and Design Grady Booch AVAILABLE
125 Introduction to Automata Theory, Languages and Computation John E Hoperoft AVAILABLE
126 Programming Languages Design and Implementation Terrence W Prott AVAILABLE
127 Programming Languages Design and Implementation Terrence W Prott AVAILABLE
128 Let us C Yashwant Kanetkar AVAILABLE
129 Let us C Yashwant Kanetkar AVAILABLE
130 Computer Graphics Foley, Van dam AVAILABLE
131 Computer Graphics Foley, Van dam AVAILABLE
132 Java How to program Deitel AVAILABLE
133 Visual Basic How to program Deitel & Deitel, T R Nieto AVAILABLE
134 Design and Analysis of Algorithms Anany Lewitin AVAILABLE
135 The Unified Modelling Language Grody Booch, James Rumbaugh AVAILABLE
136 Mastering Visual Basic 6 Evangelos Petroutsos AVAILABLE
137 Mastering Visual Basic 6 Evangelos Petroutsos AVAILABLE
138 Mastering Visual Basic 6 Evangelos Petroutsos AVAILABLE
139 Mastering Visual Basic 6 Evangelos Petroutsos AVAILABLE
140 Graphics Under C Yashwant Kanetkar AVAILABLE
141 Graphics Under C Yashwant Kanetkar AVAILABLE
142 Graphics Under C Yashwant Kanetkar AVAILABLE
143 Graphics Under C Yashwant Kanetkar AVAILABLE
144 Standard C++ Paul Wang AVAILABLE
145 Computer Concepts and C programming K Uday Kumar AVAILABLE
146 Computer Concepts and C programming K Uday Kumar AVAILABLE
147 Computer Concepts and C programming K Uday Kumar AVAILABLE
148 Fundamentals of Data Structures with C S Nandagopalan AVAILABLE
149 Data Structures with C A A Puntambekar AVAILABLE
150 Computer Organization A P Godse, Dr D A Godse AVAILABLE
151 Introduction to Microprocessors A P Godse, Dr D A Godse AVAILABLE
152 Computer Graphics A P Godse AVAILABLE
153 Computer Networks T G Basavaraju AVAILABLE
154 Computer Networks V S Bagad & I A Dhotre AVAILABLE
155 Graph Theory and Combinatorics Dr. D S C AVAILABLE
156 Computer Concepts and C programming K Uday Kumar AVAILABLE
157 Computer Concepts and C programming K Uday Kumar AVAILABLE
158 Computer Concepts and C programming K Uday Kumar AVAILABLE
159 Programming in C and C++ S S Khandare AVAILABLE
160 Data Structures using C Sunil B C AVAILABLE
161 Discrete Mathematical Structures Dr. D S C AVAILABLE
162 Data Structures through C G S Balnja AVAILABLE
163 Data Structures using C Guruprasad AVAILABLE
164 Programming and Algorithmic Languages nan AVAILABLE
165 Compiler Design O G Kakde AVAILABLE
166 basics for MS DOS Hari Venkateshwaran AVAILABLE
167 Computer Graphics A P Godse AVAILABLE
168 Principles of data warehousing Rajeev Parida AVAILABLE
169 Microprocessor and Interfacing Keshav Murthy AVAILABLE
170 Introduction to Microprocessors A P Godse & D A Godse AVAILABLE
171 Information Technology - Network and Internet C T Bhunia AVAILABLE
172 Graph theory with Application C Vasudev AVAILABLE
173 Software Engineering K K Aggarwal AVAILABLE
175 Digital Principles and Design Donald AVAILABLE
176 An Integrated Approach to Software Engineering Pankaj Jalote AVAILABLE
177 Management Information Systems C S V Murthy AVAILABLE
178 Object Oriented programming with C++ M P Bhave, Patekar AVAILABLE
179 Data Structures using C Rajni Jindal AVAILABLE
180 Compiler(Constrction and Design) Rajni Jindal AVAILABLE
181 Introduction to Constitution of India Madhava nagpur AVAILABLE
182 Formal Languages and Automata Theory Dr. B N Srinivasa Murthy AVAILABLE
183 An Integrated Approach to Software Engineering Pankaj Jalote AVAILABLE
184 Advanced concepts in Operating Systems Mukesh Singhal Niranjan AVAILABLE
186 Theory of Automata and Formal Languages R B Patel Premnath AVAILABLE
187 Formal Languages and Automata Theory Kumar and Kumar AVAILABLE
188 Advanced Computer Architecture Rai Hwang AVAILABLE
189 Multimedia Computing Ralf Nahrstatt AVAILABLE
190 Unix System programming using C++ Terrence Chan AVAILABLE
191 Cryptography and Network Security William Stallings AVAILABLE
192 Unix Network Programming Richard Stevens AVAILABLE
194 Information Security NITK Staff Develop program Dr A Kanda, Dr. K Chandrashekar AVAILABLE
196 Digital Principles and Design Givone AVAILABLE
197 Network Management Mani Subramanyan AVAILABLE
198 Network Management Mani Subramanyan AVAILABLE
199 Engineeering Management and Technology Daniel Babert & Morse AVAILABLE
200 Engineeering Management and Technology Daniel Babert & Morse AVAILABLE
201 Engineeering Management and Technology Daniel Babert & Morse AVAILABLE
202 Formal Languages and Formal Languages Padma reddy AVAILABLE
203 Distributed Operating Systems Pradeep Sinha AVAILABLE
204 Cryptography and Security William Stallings AVAILABLE
205 Introduction to Automata Theory John E Hoperoft AVAILABLE
206 Object Oriented system development Ali Bahrami AVAILABLE
207 Logic Design A P Godse AVAILABLE
208 Computer Networks Tanenbaum nan
211 Constitution Law and professional Ethics raman and yagi AVAILABLE
212 Unix Sumithaba Das AVAILABLE
213 Discrete Event Simulation Jerry Banks AVAILABLE
215 Object Oriented programming with C++ balaguruswamy AVAILABLE
216 Computer Networks Andrew Tannenbaum AVAILABLE
217 Discrete Event Simulation Jerry Banks AVAILABLE
218 Introduction to Automata Theory and Languages John E Hoperoft AVAILABLE
220 Object Oriented system development Ali Bahrami AVAILABLE
221 Computer Organization L Krishnanda AVAILABLE
223 Discrete Event Simulation Jerry Banks AVAILABLE
224 Communication Networks Widjaja nan
226 The Spirit of C Cooper AVAILABLE
227 Constitution Law and professional Ethics raman and yagi AVAILABLE
230 Computer Concepts and C programming P B KOTUR AVAILABLE
232 System Software M Joseph AVAILABLE
234 Computer Concepts and C programming Padma Reddy AVAILABLE
235 Red Hat Enterprises Linux System GLS AVAILABLE
236 Management Information Systems A K Gupta AVAILABLE
237 Analysis and Design of Algorithms A A Puntambekar AVAILABLE
238 Computer Organization A P Godse AVAILABLE
239 Microprocessor A P Godse AVAILABLE
240 data Structures, Algorithms and Applications in C++ Sartaj Sahani AVAILABLE
241 data Structures, Algorithms and Applications in C++ Sartaj Sahani AVAILABLE
242 Fundamentals of data structures in C Horowitz, Sahni, Anderson AVAILABLE
243 Fundamentals of data structures in C ++ Horowitz, Sahni, Anderson AVAILABLE
244 Fundamentals of Computer Algorithms Horowitz, Sahni, Anderson AVAILABLE
245 Computer Algorithms with C++ Horowitz, Sartaj, Rajashekeran nan
246 Graph Theory Vasudev AVAILABLE
247 Design and Analysis of Algorithms Nithin Upadhyay nan
248 Compiler Design Gajendra Sharma AVAILABLE
249 Multimedia Sujatha and Manoj pandey AVAILABLE
250 Software Testing Rajiv Chopra AVAILABLE
251 Computer Networks Sanjay Sharma AVAILABLE
252 Computer Networks Sanjay Sharma AVAILABLE
256 Computer Networks Sanjay Sharma AVAILABLE
257 Computer Networks Sanjay Sharma AVAILABLE
258 Computer Graphics and Multimedia Ehitiram raza Han, Huma Anwar AVAILABLE
259 Computer Concepts and C programming Rajesh Hungal AVAILABLE
260 Operating Systems Vijay Gupta AVAILABLE
261 Interactive Computer Graphics Edward Angel AVAILABLE
262 Interactive Computer Graphics Edward Angel AVAILABLE
263 Operating Systems I A Dhotre AVAILABLE
264 management and Entrepreneurship Naidu, Krishna Rao AVAILABLE
265 Compiler Design Puntambekar AVAILABLE
266 management and Entrepreneurship Srinivas AVAILABLE
267 Microprocessor lab manual Krishna Mohan, Gayatri kamath AVAILABLE
268 Operating Systems I A Dhotre AVAILABLE
269 Software Engineering Agarwal, Yogeesh Singh AVAILABLE
270 Digital design and Computer Organization Dr.Gill, Dixit AVAILABLE
271 Programming with C++ Juneja, Anitha Seth AVAILABLE
272 management and Entrepreneurship veerabhadrappa AVAILABLE
273 Computer Networks BharatBhushan Agarwal, Sunil Prakash AVAILABLE
274 data and computer communication Rachana Sharma AVAILABLE
275 System Software Smitha Ujwal AVAILABLE
276 Web Technology Pankaj Sharma AVAILABLE
277 Multimedia Sujata Pandey, Manoj Pandey AVAILABLE
278 Software Engineering Bali- Bali AVAILABLE
279 Software Engineering Bali- Bali AVAILABLE
280 Computer Networks Sanjay Sharma AVAILABLE
281 Object Oriented System with Java lalit Arora AVAILABLE
282 The design and analysis of alsorithms Nithin Upadhyay AVAILABLE
283 Computer Networks - II Bagad, Dhotre nan
284 Question bank in computer science Nithin Upadhyay, Ramaswamy, Balaguruswamy AVAILABLE
285 parallel Computing Bhujade AVAILABLE
286 An introduction to client server computing Subash Chandra yadav AVAILABLE
287 Design and Implementation of Compiler Ravindra Singh, Vivek Sharma AVAILABLE
288 Programming in C++ balaguruswamy AVAILABLE
289 Operating Systems Dhamdhere AVAILABLE
290 Operating Systems Archer Harris AVAILABLE
291 Data Communications and Networking Forouzan AVAILABLE
292 Programming the web Puntambekar AVAILABLE