-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdump.sql
337 lines (337 loc) · 40.4 KB
/
dump.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE IF NOT EXISTS "django_migrations" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "app" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "applied" datetime NOT NULL);
INSERT INTO django_migrations VALUES(1,'contenttypes','0001_initial','2023-05-01 06:55:44.119014');
INSERT INTO django_migrations VALUES(2,'contenttypes','0002_remove_content_type_name','2023-05-01 06:55:44.130519');
INSERT INTO django_migrations VALUES(3,'auth','0001_initial','2023-05-01 06:55:44.143903');
INSERT INTO django_migrations VALUES(4,'auth','0002_alter_permission_name_max_length','2023-05-01 06:55:44.152699');
INSERT INTO django_migrations VALUES(5,'auth','0003_alter_user_email_max_length','2023-05-01 06:55:44.166695');
INSERT INTO django_migrations VALUES(6,'auth','0004_alter_user_username_opts','2023-05-01 06:55:44.173694');
INSERT INTO django_migrations VALUES(7,'auth','0005_alter_user_last_login_null','2023-05-01 06:55:44.179712');
INSERT INTO django_migrations VALUES(8,'auth','0006_require_contenttypes_0002','2023-05-01 06:55:44.183714');
INSERT INTO django_migrations VALUES(9,'auth','0007_alter_validators_add_error_messages','2023-05-01 06:55:44.190588');
INSERT INTO django_migrations VALUES(10,'auth','0008_alter_user_username_max_length','2023-05-01 06:55:44.196601');
INSERT INTO django_migrations VALUES(11,'auth','0009_alter_user_last_name_max_length','2023-05-01 06:55:44.203604');
INSERT INTO django_migrations VALUES(12,'auth','0010_alter_group_name_max_length','2023-05-01 06:55:44.211610');
INSERT INTO django_migrations VALUES(13,'auth','0011_update_proxy_permissions','2023-05-01 06:55:44.218612');
INSERT INTO django_migrations VALUES(14,'auth','0012_alter_user_first_name_max_length','2023-05-01 06:55:44.226138');
INSERT INTO django_migrations VALUES(15,'app','0001_initial','2023-05-01 06:55:44.240134');
INSERT INTO django_migrations VALUES(16,'admin','0001_initial','2023-05-01 06:55:44.253156');
INSERT INTO django_migrations VALUES(17,'admin','0002_logentry_remove_auto_add','2023-05-01 06:55:44.263159');
INSERT INTO django_migrations VALUES(18,'admin','0003_logentry_add_action_flag_choices','2023-05-01 06:55:44.271157');
INSERT INTO django_migrations VALUES(19,'sessions','0001_initial','2023-05-01 06:55:44.281155');
INSERT INTO django_migrations VALUES(20,'app','0002_course_session_year','2023-05-01 13:48:51.502582');
INSERT INTO django_migrations VALUES(21,'app','0003_student','2023-05-01 13:54:14.183019');
INSERT INTO django_migrations VALUES(22,'app','0004_alter_customuser_user_type','2023-05-01 14:46:40.383613');
INSERT INTO django_migrations VALUES(23,'app','0005_staff','2023-05-01 18:02:46.034207');
INSERT INTO django_migrations VALUES(24,'app','0006_subject','2023-05-01 18:57:07.714286');
INSERT INTO django_migrations VALUES(25,'app','0007_attendance_attendance_report','2023-05-02 13:13:11.327313');
INSERT INTO django_migrations VALUES(26,'app','0008_rename_session_year_attendance_session_year_id','2023-05-02 16:49:37.650661');
CREATE TABLE IF NOT EXISTS "django_content_type" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "app_label" varchar(100) NOT NULL, "model" varchar(100) NOT NULL);
INSERT INTO django_content_type VALUES(1,'app','customuser');
INSERT INTO django_content_type VALUES(2,'admin','logentry');
INSERT INTO django_content_type VALUES(3,'auth','permission');
INSERT INTO django_content_type VALUES(4,'auth','group');
INSERT INTO django_content_type VALUES(5,'contenttypes','contenttype');
INSERT INTO django_content_type VALUES(6,'sessions','session');
INSERT INTO django_content_type VALUES(7,'app','course');
INSERT INTO django_content_type VALUES(8,'app','session_year');
INSERT INTO django_content_type VALUES(9,'app','student');
INSERT INTO django_content_type VALUES(10,'app','staff');
INSERT INTO django_content_type VALUES(11,'app','subject');
INSERT INTO django_content_type VALUES(12,'app','attendance');
INSERT INTO django_content_type VALUES(13,'app','attendance_report');
CREATE TABLE IF NOT EXISTS "auth_group_permissions" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "group_id" integer NOT NULL REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED, "permission_id" integer NOT NULL REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED);
CREATE TABLE IF NOT EXISTS "auth_permission" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "content_type_id" integer NOT NULL REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED, "codename" varchar(100) NOT NULL, "name" varchar(255) NOT NULL);
INSERT INTO auth_permission VALUES(1,1,'add_customuser','Can add user');
INSERT INTO auth_permission VALUES(2,1,'change_customuser','Can change user');
INSERT INTO auth_permission VALUES(3,1,'delete_customuser','Can delete user');
INSERT INTO auth_permission VALUES(4,1,'view_customuser','Can view user');
INSERT INTO auth_permission VALUES(5,2,'add_logentry','Can add log entry');
INSERT INTO auth_permission VALUES(6,2,'change_logentry','Can change log entry');
INSERT INTO auth_permission VALUES(7,2,'delete_logentry','Can delete log entry');
INSERT INTO auth_permission VALUES(8,2,'view_logentry','Can view log entry');
INSERT INTO auth_permission VALUES(9,3,'add_permission','Can add permission');
INSERT INTO auth_permission VALUES(10,3,'change_permission','Can change permission');
INSERT INTO auth_permission VALUES(11,3,'delete_permission','Can delete permission');
INSERT INTO auth_permission VALUES(12,3,'view_permission','Can view permission');
INSERT INTO auth_permission VALUES(13,4,'add_group','Can add group');
INSERT INTO auth_permission VALUES(14,4,'change_group','Can change group');
INSERT INTO auth_permission VALUES(15,4,'delete_group','Can delete group');
INSERT INTO auth_permission VALUES(16,4,'view_group','Can view group');
INSERT INTO auth_permission VALUES(17,5,'add_contenttype','Can add content type');
INSERT INTO auth_permission VALUES(18,5,'change_contenttype','Can change content type');
INSERT INTO auth_permission VALUES(19,5,'delete_contenttype','Can delete content type');
INSERT INTO auth_permission VALUES(20,5,'view_contenttype','Can view content type');
INSERT INTO auth_permission VALUES(21,6,'add_session','Can add session');
INSERT INTO auth_permission VALUES(22,6,'change_session','Can change session');
INSERT INTO auth_permission VALUES(23,6,'delete_session','Can delete session');
INSERT INTO auth_permission VALUES(24,6,'view_session','Can view session');
INSERT INTO auth_permission VALUES(25,7,'add_course','Can add course');
INSERT INTO auth_permission VALUES(26,7,'change_course','Can change course');
INSERT INTO auth_permission VALUES(27,7,'delete_course','Can delete course');
INSERT INTO auth_permission VALUES(28,7,'view_course','Can view course');
INSERT INTO auth_permission VALUES(29,8,'add_session_year','Can add session_ year');
INSERT INTO auth_permission VALUES(30,8,'change_session_year','Can change session_ year');
INSERT INTO auth_permission VALUES(31,8,'delete_session_year','Can delete session_ year');
INSERT INTO auth_permission VALUES(32,8,'view_session_year','Can view session_ year');
INSERT INTO auth_permission VALUES(33,9,'add_student','Can add student');
INSERT INTO auth_permission VALUES(34,9,'change_student','Can change student');
INSERT INTO auth_permission VALUES(35,9,'delete_student','Can delete student');
INSERT INTO auth_permission VALUES(36,9,'view_student','Can view student');
INSERT INTO auth_permission VALUES(37,10,'add_staff','Can add staff');
INSERT INTO auth_permission VALUES(38,10,'change_staff','Can change staff');
INSERT INTO auth_permission VALUES(39,10,'delete_staff','Can delete staff');
INSERT INTO auth_permission VALUES(40,10,'view_staff','Can view staff');
INSERT INTO auth_permission VALUES(41,11,'add_subject','Can add subject');
INSERT INTO auth_permission VALUES(42,11,'change_subject','Can change subject');
INSERT INTO auth_permission VALUES(43,11,'delete_subject','Can delete subject');
INSERT INTO auth_permission VALUES(44,11,'view_subject','Can view subject');
INSERT INTO auth_permission VALUES(45,12,'add_attendance','Can add attendance');
INSERT INTO auth_permission VALUES(46,12,'change_attendance','Can change attendance');
INSERT INTO auth_permission VALUES(47,12,'delete_attendance','Can delete attendance');
INSERT INTO auth_permission VALUES(48,12,'view_attendance','Can view attendance');
INSERT INTO auth_permission VALUES(49,13,'add_attendance_report','Can add attendance_ report');
INSERT INTO auth_permission VALUES(50,13,'change_attendance_report','Can change attendance_ report');
INSERT INTO auth_permission VALUES(51,13,'delete_attendance_report','Can delete attendance_ report');
INSERT INTO auth_permission VALUES(52,13,'view_attendance_report','Can view attendance_ report');
CREATE TABLE IF NOT EXISTS "auth_group" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(150) NOT NULL UNIQUE);
CREATE TABLE IF NOT EXISTS "app_customuser" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "password" varchar(128) NOT NULL, "last_login" datetime NULL, "is_superuser" bool NOT NULL, "username" varchar(150) NOT NULL UNIQUE, "first_name" varchar(150) NOT NULL, "last_name" varchar(150) NOT NULL, "email" varchar(254) NOT NULL, "is_staff" bool NOT NULL, "is_active" bool NOT NULL, "date_joined" datetime NOT NULL, "user_type" varchar(50) NOT NULL, "profile_pic" varchar(100) NOT NULL);
INSERT INTO app_customuser VALUES(1,'pbkdf2_sha256$260000$Oqe5VJe4qtazxThLKxuzs3$so8GH3m/cDvcIDrd6hm89I5OGBO0cs9mUcFrFkiG/4w=','2024-05-04 12:49:44.494560',1,'admin','Sathosh','K C','[email protected]',1,1,'2023-05-01 06:56:58','1','media/profile_pic/hod.webp');
INSERT INTO app_customuser VALUES(3,'pbkdf2_sha256$600000$Ko0yUhz8pAtrvX79D5HUVT$li0I01sm2zrPZJ8lVaLXrMCqEBIU10mxdnP8MYMFrRM=','2023-05-26 16:00:47.953769',0,'amitesh','Amitesh','Sinha','[email protected]',0,1,'2023-05-01 14:48:09','3','media/profile_pic/02_Tbb2zQ4.jpg');
INSERT INTO app_customuser VALUES(7,'pbkdf2_sha256$600000$UmDUrftQuDt4KpuztKkz3P$Ao1Cg6L14EyJn+YvuOLM0m4kP88b7+WuUKg19lO4bGo=',NULL,0,'biswajit','Biswajit','Hemran','[email protected]',0,1,'2023-05-01 15:10:09','3','media/profile_pic/ff.jpg');
INSERT INTO app_customuser VALUES(10,'pbkdf2_sha256$600000$l8H0uzfVTqLlmr07SJeTZH$lIEOoOtmmaFiv9E6onBL48z5Ic5G+cXBqyRtA9Hbxmw=','2023-05-07 11:08:11.427960',0,'aravind','Aravind','H','[email protected]',0,1,'2023-05-02 15:46:34','3','media/profile_pic/bittu.jpg');
INSERT INTO app_customuser VALUES(11,'pbkdf2_sha256$600000$DkrIOgTAxk1yjbLS6TU0bY$MjMi+BAK8NJii0zpu9mIFC1pmdJ/aMrVOhtNOtxbjLY=',NULL,0,'vivek','Vivek','Solanki','[email protected]',0,1,'2023-05-02 15:47:20','3','media/profile_pic/def_user_EwwDQua.jpeg');
INSERT INTO app_customuser VALUES(12,'pbkdf2_sha256$600000$aw10YtpjYaj97Nc8VM8pBX$MaN2aRhHEyeRRJLr2p6lwqHFyCurBeRsJK+3Coie6mY=','2023-05-07 05:18:47.024742',0,'atul','Atul','Rajput','[email protected]',0,1,'2023-05-02 15:47:58','3','media/profile_pic/def_user_lf7bS7S.jpeg');
INSERT INTO app_customuser VALUES(13,'pbkdf2_sha256$600000$x1LwTYdz9n5PxtwVtokucY$DpxXNV4dupHkpNCRIUuP0ThmFn0N8DuouSuS/Sw5eY0=',NULL,0,'bittu','Bittu','Yadav','[email protected]',0,1,'2023-05-02 15:52:45','3','media/profile_pic/def_user_zUk3ygd.jpeg');
INSERT INTO app_customuser VALUES(14,'pbkdf2_sha256$600000$Bt5F3dC4ouVRifrfuCazTD$clAYJ/0gHKZ+Rjz6wLFC3LFp0RRxBr54HbLntVlvdm4=','2023-05-26 16:18:11.457183',0,'jayanti','Jayanti','M','[email protected]',0,1,'2023-05-03 05:34:40','2','media/profile_pic/def_user_RLpKHjj.jpeg');
INSERT INTO app_customuser VALUES(15,'pbkdf2_sha256$600000$1rIy7Ew0uk39MietQEyIhi$VVeTVIrJ4x2pWbpTL52tg6BIH8jnOQw958k1YCoYbv0=','2023-05-07 11:08:25.101026',0,'vaishnavi','Vaishnavi','P','[email protected]',0,1,'2023-05-06 12:04:11.465069','3','');
INSERT INTO app_customuser VALUES(16,'pbkdf2_sha256$600000$FctQu4wg8iZ9KN5BOHIpgh$ggs3aAkX47BIenwzHbuchujbP2SE+PqbNcT0ZPgP+8A=',NULL,0,'indu','Indu','Kumari','[email protected]',0,1,'2023-05-06 12:06:49.306805','3','');
INSERT INTO app_customuser VALUES(17,'pbkdf2_sha256$600000$1qveBN5puWU8ldzW2MfBWG$jFk5m83aJwFzhIYKPma7FAEE75Ye9P3St+W06LQ1bA8=',NULL,0,'priya','Priya','Chauhan','[email protected]',0,1,'2023-05-06 12:08:59.415129','3','media/profile_pic/def_user_JRqYDgp.jpeg');
INSERT INTO app_customuser VALUES(18,'pbkdf2_sha256$600000$R2tppZ9NBOCKPQiATJDIXk$y4Sk38TAwwc43WoXODKniTxdulHeH4ZvK0K29XHbkuw=','2023-05-26 15:57:02.762279',0,'kalaivani','Kalaivani','A','[email protected]',0,1,'2023-05-06 12:34:22','2','');
INSERT INTO app_customuser VALUES(19,'pbkdf2_sha256$600000$nuAKnMO3ehqauyTCJDh0Nd$aduhsM2uHEFjOJktiobr25P1YM6XyBx4ZU36BnALc38=','2023-05-26 16:18:16.768164',0,'faraz','Faraz','Khan','[email protected]',0,1,'2023-05-06 17:16:00.799502','3','');
CREATE TABLE IF NOT EXISTS "app_customuser_groups" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "customuser_id" bigint NOT NULL REFERENCES "app_customuser" ("id") DEFERRABLE INITIALLY DEFERRED, "group_id" integer NOT NULL REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED);
CREATE TABLE IF NOT EXISTS "app_customuser_user_permissions" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "customuser_id" bigint NOT NULL REFERENCES "app_customuser" ("id") DEFERRABLE INITIALLY DEFERRED, "permission_id" integer NOT NULL REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED);
CREATE TABLE IF NOT EXISTS "django_admin_log" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "object_id" text NULL, "object_repr" varchar(200) NOT NULL, "action_flag" smallint unsigned NOT NULL CHECK ("action_flag" >= 0), "change_message" text NOT NULL, "content_type_id" integer NULL REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED, "user_id" bigint NOT NULL REFERENCES "app_customuser" ("id") DEFERRABLE INITIALLY DEFERRED, "action_time" datetime NOT NULL);
INSERT INTO django_admin_log VALUES(1,'1','admin',2,'[{"changed": {"fields": ["First name", "Last name"]}}]',1,1,'2023-05-01 08:35:20.495923');
INSERT INTO django_admin_log VALUES(2,'1','2021 To 2024',1,'[{"added": {}}]',8,1,'2023-05-01 13:59:47.911884');
INSERT INTO django_admin_log VALUES(3,'2','2022 To 2025',1,'[{"added": {}}]',8,1,'2023-05-01 13:59:56.134870');
INSERT INTO django_admin_log VALUES(4,'1','MCA',1,'[{"added": {}}]',7,1,'2023-05-01 14:05:05.767527');
INSERT INTO django_admin_log VALUES(5,'2','BCA',1,'[{"added": {}}]',7,1,'2023-05-01 14:05:12.177159');
INSERT INTO django_admin_log VALUES(6,'2','BCA(General)',2,'[{"changed": {"fields": ["Name"]}}]',7,1,'2023-05-01 14:05:34.222186');
INSERT INTO django_admin_log VALUES(7,'3','BCA(Data Science)',1,'[{"added": {}}]',7,1,'2023-05-01 14:05:49.993077');
INSERT INTO django_admin_log VALUES(8,'1','faraz khan',3,'',9,1,'2023-05-01 14:49:46.817079');
INSERT INTO django_admin_log VALUES(9,'2','farazz',3,'',1,1,'2023-05-01 14:50:07.333251');
INSERT INTO django_admin_log VALUES(10,'5','fdfsfs',3,'',1,1,'2023-05-01 19:01:18.823609');
INSERT INTO django_admin_log VALUES(11,'6','sdfsdf',3,'',1,1,'2023-05-01 19:01:18.839229');
INSERT INTO django_admin_log VALUES(12,'8','sdfsdfdsfdsf',3,'',1,1,'2023-05-01 19:01:18.839229');
INSERT INTO django_admin_log VALUES(13,'1','faraz',1,'[{"added": {}}]',10,1,'2023-05-01 19:01:38.331456');
INSERT INTO django_admin_log VALUES(14,'1','Python Programming',1,'[{"added": {}}]',11,1,'2023-05-01 19:15:33.041117');
INSERT INTO django_admin_log VALUES(15,'3','faraz khan',3,'',9,1,'2023-05-02 11:33:43.241395');
INSERT INTO django_admin_log VALUES(16,'4','faraz',2,'[{"changed": {"fields": ["Staff status"]}}]',1,1,'2023-05-02 11:40:26.479821');
INSERT INTO django_admin_log VALUES(17,'2','Python Programming',3,'',12,1,'2023-05-02 17:00:05.740688');
INSERT INTO django_admin_log VALUES(18,'1','Python Programming',3,'',12,1,'2023-05-02 17:00:05.750586');
INSERT INTO django_admin_log VALUES(19,'1','deepallll kuamrer',3,'',13,1,'2023-05-02 17:03:44.871014');
INSERT INTO django_admin_log VALUES(20,'4','Python Programming',3,'',12,1,'2023-05-02 17:03:52.125076');
INSERT INTO django_admin_log VALUES(21,'3','Python Programming',3,'',12,1,'2023-05-02 17:03:52.131723');
INSERT INTO django_admin_log VALUES(22,'2','Artificial Intelligence',1,'[{"added": {}}]',11,1,'2023-05-02 18:23:34.000268');
INSERT INTO django_admin_log VALUES(23,'6','Vivek SOlanki',3,'',13,1,'2023-05-03 05:25:03.830809');
INSERT INTO django_admin_log VALUES(24,'5','Aravind H',3,'',13,1,'2023-05-03 05:25:03.842843');
INSERT INTO django_admin_log VALUES(25,'4','amitesh sinha',3,'',13,1,'2023-05-03 05:25:03.858505');
INSERT INTO django_admin_log VALUES(26,'3','bittu yadav',3,'',13,1,'2023-05-03 05:25:03.858505');
INSERT INTO django_admin_log VALUES(27,'2','deepallll kuamrer',3,'',13,1,'2023-05-03 05:25:03.874148');
INSERT INTO django_admin_log VALUES(28,'6','Artificial Intelligence',3,'',12,1,'2023-05-03 05:25:23.336640');
INSERT INTO django_admin_log VALUES(29,'5','Python Programming',3,'',12,1,'2023-05-03 05:25:23.392950');
INSERT INTO django_admin_log VALUES(30,'1','faraz',3,'',10,1,'2023-05-03 05:25:44.760136');
INSERT INTO django_admin_log VALUES(31,'9','bittu yadav',2,'[{"changed": {"fields": ["Address"]}}]',9,1,'2023-05-03 05:26:29.075302');
INSERT INTO django_admin_log VALUES(32,'13','bittu',2,'[{"changed": {"fields": ["Username", "First name", "Last name", "Email address"]}}]',1,1,'2023-05-03 05:27:35.167021');
INSERT INTO django_admin_log VALUES(33,'3','amitesh',2,'[{"changed": {"fields": ["First name", "Last name", "Email address"]}}]',1,1,'2023-05-03 05:28:23.897856');
INSERT INTO django_admin_log VALUES(34,'2','Amitesh Sinha',2,'[{"changed": {"fields": ["Address", "Gender", "Course id", "Session year id"]}}]',9,1,'2023-05-03 05:29:44.072265');
INSERT INTO django_admin_log VALUES(35,'8','Atul Rajput',2,'[]',9,1,'2023-05-03 05:30:17.602055');
INSERT INTO django_admin_log VALUES(36,'12','atul',2,'[{"changed": {"fields": ["Username", "Email address"]}}]',1,1,'2023-05-03 05:30:39.306677');
INSERT INTO django_admin_log VALUES(37,'11','vivek',2,'[{"changed": {"fields": ["Username", "Last name", "Email address"]}}]',1,1,'2023-05-03 05:31:23.686684');
INSERT INTO django_admin_log VALUES(38,'10','aravind',2,'[{"changed": {"fields": ["Username", "First name", "Email address"]}}]',1,1,'2023-05-03 05:31:59.098291');
INSERT INTO django_admin_log VALUES(39,'7','biswajit',2,'[{"changed": {"fields": ["Username", "First name", "Last name", "Email address"]}}]',1,1,'2023-05-03 05:32:47.190314');
INSERT INTO django_admin_log VALUES(40,'4','Biswajit Hemran',2,'[{"changed": {"fields": ["Address"]}}]',9,1,'2023-05-03 05:33:07.689167');
INSERT INTO django_admin_log VALUES(41,'14','jayanti',1,'[{"added": {}}]',1,1,'2023-05-03 05:34:40.435780');
INSERT INTO django_admin_log VALUES(42,'14','jayanti',2,'[{"changed": {"fields": ["First name", "Last name", "Email address"]}}]',1,1,'2023-05-03 05:35:08.004393');
INSERT INTO django_admin_log VALUES(43,'2','jayanti',1,'[{"added": {}}]',10,1,'2023-05-03 05:35:47.611779');
INSERT INTO django_admin_log VALUES(44,'3','Web Development',1,'[{"added": {}}]',11,1,'2023-05-03 05:39:43.380636');
INSERT INTO django_admin_log VALUES(45,'4','Python Programming with Data Analysis',1,'[{"added": {}}]',11,1,'2023-05-03 05:40:30.337035');
INSERT INTO django_admin_log VALUES(46,'5','Artificial Intelligence',1,'[{"added": {}}]',11,1,'2023-05-03 05:40:51.766536');
INSERT INTO django_admin_log VALUES(47,'9','Bittu Yadav',3,'',13,1,'2023-05-03 05:48:28.875189');
INSERT INTO django_admin_log VALUES(48,'8','Biswajit Hemran',3,'',13,1,'2023-05-03 05:48:28.922803');
INSERT INTO django_admin_log VALUES(49,'7','Amitesh Sinha',3,'',13,1,'2023-05-03 05:48:28.930867');
INSERT INTO django_admin_log VALUES(50,'7','Web Development',3,'',12,1,'2023-05-03 05:48:35.489872');
INSERT INTO django_admin_log VALUES(51,'18','kalaivani',1,'[{"added": {}}]',1,1,'2023-05-06 12:34:23.085374');
INSERT INTO django_admin_log VALUES(52,'18','kalaivani',2,'[{"changed": {"fields": ["First name", "Last name", "Email address"]}}]',1,1,'2023-05-06 12:35:50.891805');
INSERT INTO django_admin_log VALUES(53,'3','kalaivani',1,'[{"added": {}}]',10,1,'2023-05-06 12:36:10.925098');
INSERT INTO django_admin_log VALUES(54,'4','Database Management Systems',1,'[{"added": {}}]',7,1,'2023-05-06 12:36:37.569137');
INSERT INTO django_admin_log VALUES(55,'4','Database Management Systems',3,'',7,1,'2023-05-06 12:36:55.804924');
INSERT INTO django_admin_log VALUES(56,'6','Database Management Systems',1,'[{"added": {}}]',11,1,'2023-05-06 12:37:42.331633');
INSERT INTO django_admin_log VALUES(57,'18','Web Development',3,'',12,1,'2023-05-06 16:08:45.694697');
INSERT INTO django_admin_log VALUES(58,'19','Web Development',3,'',12,1,'2023-05-06 16:08:50.246163');
INSERT INTO django_admin_log VALUES(59,'4','faraz',2,'[{"changed": {"fields": ["Email address"]}}]',1,1,'2023-05-06 17:13:12.507366');
INSERT INTO django_admin_log VALUES(60,'13','faraz khan',1,'[{"added": {}}]',9,1,'2023-05-06 17:13:40.072615');
INSERT INTO django_admin_log VALUES(61,'4','faraz',3,'',1,1,'2023-05-06 17:14:45.492995');
INSERT INTO django_admin_log VALUES(62,'3','BCA (Data Science)',2,'[{"changed": {"fields": ["Name"]}}]',7,1,'2023-05-06 17:19:10.720496');
INSERT INTO django_admin_log VALUES(63,'2','BCA (General)',2,'[{"changed": {"fields": ["Name"]}}]',7,1,'2023-05-06 17:19:35.519890');
INSERT INTO django_admin_log VALUES(64,'13','Web Development 2023-05-03',3,'',12,1,'2023-05-06 18:03:37.430341');
INSERT INTO django_admin_log VALUES(65,'16','Web Development 2023-05-03',3,'',12,1,'2023-05-06 18:03:57.004273');
INSERT INTO django_admin_log VALUES(66,'10','Vaishnavi P',2,'[]',9,1,'2023-05-06 18:20:37.208202');
INSERT INTO django_admin_log VALUES(67,'14','Faraz Khan',2,'[]',9,1,'2023-05-06 18:23:37.026576');
INSERT INTO django_admin_log VALUES(68,'9','Bittu Yadav',2,'[{"changed": {"fields": ["Session year id"]}}]',9,1,'2023-05-07 04:57:23.875025');
INSERT INTO django_admin_log VALUES(69,'8','Atul Rajput',2,'[{"changed": {"fields": ["Session year id"]}}]',9,1,'2023-05-07 04:57:29.536563');
INSERT INTO django_admin_log VALUES(70,'7','Vivek Solanki',2,'[{"changed": {"fields": ["Session year id"]}}]',9,1,'2023-05-07 04:57:33.921727');
INSERT INTO django_admin_log VALUES(71,'6','Aravind H',2,'[{"changed": {"fields": ["Session year id"]}}]',9,1,'2023-05-07 04:57:37.548235');
INSERT INTO django_admin_log VALUES(72,'17','Python Programming with Data Analysis 2023-05-03',2,'[{"changed": {"fields": ["Session year id"]}}]',12,1,'2023-05-07 04:58:01.476744');
INSERT INTO django_admin_log VALUES(73,'15','Python Programming with Data Analysis 2023-05-05',2,'[{"changed": {"fields": ["Session year id"]}}]',12,1,'2023-05-07 04:58:06.160381');
INSERT INTO django_admin_log VALUES(74,'14','Python Programming with Data Analysis 2023-05-01',2,'[{"changed": {"fields": ["Session year id"]}}]',12,1,'2023-05-07 04:58:09.380010');
INSERT INTO django_admin_log VALUES(75,'10','Artificial Intelligence 2023-05-01',2,'[{"changed": {"fields": ["Session year id"]}}]',12,1,'2023-05-07 04:58:20.988422');
INSERT INTO django_admin_log VALUES(76,'8','Web Development 2023-05-01',2,'[{"changed": {"fields": ["Session year id"]}}]',12,1,'2023-05-07 04:58:32.519053');
INSERT INTO django_admin_log VALUES(77,'9','Python Programming with Data Analysis 2023-05-01',2,'[{"changed": {"fields": ["Session year id"]}}]',12,1,'2023-05-07 04:58:35.733370');
INSERT INTO django_admin_log VALUES(78,'1','2021 To 2024',3,'',8,1,'2023-05-07 04:59:06.996768');
INSERT INTO django_admin_log VALUES(79,'2','2022 To - 25',2,'[{"changed": {"fields": ["Session end"]}}]',8,1,'2023-05-07 05:00:43.842293');
INSERT INTO django_admin_log VALUES(80,'2','2022 To 25',2,'[{"changed": {"fields": ["Session end"]}}]',8,1,'2023-05-07 05:00:54.229112');
CREATE TABLE IF NOT EXISTS "django_session" ("session_key" varchar(40) NOT NULL PRIMARY KEY, "session_data" text NOT NULL, "expire_date" datetime NOT NULL);
INSERT INTO django_session VALUES('bwwg6ad5ij1b1jowzata93qo6g9svpu4','.eJxVjDsOwjAQRO_iGln-rgklPWewdtcODiBbipMKcXcSKQWUM-_NvEXEdSlx7XmOUxIXocXptyPkZ647SA-s9ya51WWeSO6KPGiXt5by63q4fwcFe9nWAZUe_DkHPWb0IxnviZ1iRwaCy4BsmTiQS-x9CEaDVVsisGwHUCA-X-f0N5g:1puzsn:i_RuvVMLMSifXH8pyxqfqa8-W_jDeV2IRKkx7oTWaFY','2023-05-19 18:10:17.192706');
INSERT INTO django_session VALUES('2tu8f2jwvoteiazwy13hk4o0x6oy0mil','.eJxVjMEOwiAQRP-FsyFCWQGP3vsNZJfdStXQpLQn47_bJj3oaZJ5b-atEq5LSWuTOY2srso4dfotCfNT6k74gfU-6TzVZR5J74o-aNP9xPK6He7fQcFWtrU36AwFD-ishTMybREAhhCiyGAFOmddJs-5Q2tsBoMYgaPQJSIG9fkC8sc3_w:1pvDcG:5BMuREX7iQei8Qf-kb02fH4eti8voDdFL4rA3qhjGQY','2023-05-20 08:50:08.383037');
INSERT INTO django_session VALUES('lk6ja28yxsxnowzugqktr0okqoq8nfng','.eJxVjDsOwjAQRO_iGln-rgklPWewdtcODiBbipMKcXcSKQWUM-_NvEXEdSlx7XmOUxIXocXptyPkZ647SA-s9ya51WWeSO6KPGiXt5by63q4fwcFe9nWAZUe_DkHPWb0IxnviZ1iRwaCy4BsmTiQS-x9CEaDVVsisGwHUCA-X-f0N5g:1pvHMU:3So9KUcdciYX5X9C5-l5v3DUExUAzinAP1j6HuhPVX8','2023-05-20 12:50:06.014392');
INSERT INTO django_session VALUES('vqastiz46qm9dyz2i5gwwllp5h46ayxe','.eJxVjDsOwyAQRO9CHSHAsJiU6X0GtMtCcBLZkj9VlLsHSy4Saap5b-YtIu5bjfualziyuAodxOW3JEzPPB2EHzjdZ5nmaVtGkociT7rKYeb8up3u30HFtbZ1IQOkHdsELlnjjPXgKRFkVghsPSOpzBpD6SGUrtEWYKc6CKkH8fkCFZc38w:1pw43q:PRYC9vhoAzuUQ38qMA9ySkCYUntPx-sCo_tFpJ5gIYY','2023-05-22 16:50:06.367633');
INSERT INTO django_session VALUES('0udydywb8jg3eg1iwt90st9v15dm89km','.eJxVjDsOwjAQRO_iGln-rgklPWewdtcODiBbipMKcXcSKQWUM-_NvEXEdSlx7XmOUxIXocXptyPkZ647SA-s9ya51WWeSO6KPGiXt5by63q4fwcFe9nWAZUe_DkHPWb0IxnviZ1iRwaCy4BsmTiQS-x9CEaDVVsisGwHUCA-X-f0N5g:1pyFEb:x67Fb4BT73K7CoF3uDJkaWtR7SR3ad-u9TT9fywRz1E','2023-05-28 17:10:13.714128');
INSERT INTO django_session VALUES('6eylyl1r53hvnxq2j59phfp3gsimty8y','.eJxVjMsOwiAURP-FtSE8Jbh07zcQ7gOpGkhKuzL-u23ShWZ2c87MW6S8LjWtg-c0kbgILU6_HWR8ctsBPXK7d4m9LfMEclfkQYe8deLX9XD_DmoedVvbQETgNUAkJlDWRacs5UAh-i3RkUPOaCIWX7xBzdYYdSattVKuiM8X_EQ3-A:1s3Epk:N4vyd7Y1tihP6SJSi16NdaW8By0hWkFxfznCHneGKIs','2024-05-18 12:49:44.502558');
CREATE TABLE IF NOT EXISTS "app_course" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(100) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL);
INSERT INTO app_course VALUES(1,'MCA','2023-05-01 14:05:05.767527','2023-05-01 14:05:05.767527');
INSERT INTO app_course VALUES(2,'BCA (General)','2023-05-01 14:05:12.173159','2023-05-06 17:19:35.519890');
INSERT INTO app_course VALUES(3,'BCA (Data Science)','2023-05-01 14:05:49.993077','2023-05-06 17:19:10.720496');
CREATE TABLE IF NOT EXISTS "app_session_year" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "session_start" varchar(100) NOT NULL, "session_end" varchar(100) NOT NULL);
INSERT INTO app_session_year VALUES(2,'2022','25');
CREATE TABLE IF NOT EXISTS "app_student" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "address" text NOT NULL, "gender" varchar(100) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "admin_id" bigint NOT NULL UNIQUE REFERENCES "app_customuser" ("id") DEFERRABLE INITIALLY DEFERRED, "course_id_id" bigint NOT NULL REFERENCES "app_course" ("id") DEFERRABLE INITIALLY DEFERRED, "session_year_id_id" bigint NOT NULL REFERENCES "app_session_year" ("id") DEFERRABLE INITIALLY DEFERRED);
INSERT INTO app_student VALUES(2,'Banaswadi, Bangalore','Male','2023-05-01 14:48:09.518332','2023-05-03 05:29:44.017295',3,2,2);
INSERT INTO app_student VALUES(4,'HRBR','Male','2023-05-01 15:10:10.128009','2023-05-03 05:33:07.636143',7,2,2);
INSERT INTO app_student VALUES(6,'Kerala','Male','2023-05-02 15:46:34.823491','2023-05-07 04:57:37.548235',10,1,2);
INSERT INTO app_student VALUES(7,'M.P.','Male','2023-05-02 15:47:20.911396','2023-05-07 04:57:33.921727',11,1,2);
INSERT INTO app_student VALUES(8,'Uttrakhand','Male','2023-05-02 15:47:58.796853','2023-05-07 04:57:29.536563',12,3,2);
INSERT INTO app_student VALUES(9,'Bihar','Male','2023-05-02 15:52:45.900257','2023-05-07 04:57:23.859379',13,2,2);
INSERT INTO app_student VALUES(10,'Bangalore','Female','2023-05-06 12:04:11.669135','2023-05-06 18:20:37.207201',15,3,2);
INSERT INTO app_student VALUES(11,'Bangalore','Female','2023-05-06 12:06:49.495131','2023-05-06 12:06:49.495131',16,3,2);
INSERT INTO app_student VALUES(12,'Bangalore','Female','2023-05-06 12:08:59.619473','2023-05-06 12:08:59.619473',17,2,2);
INSERT INTO app_student VALUES(14,'Bangalore','Male','2023-05-06 17:16:00.988391','2023-05-06 18:23:37.025575',19,2,2);
CREATE TABLE IF NOT EXISTS "app_staff" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "address" text NOT NULL, "gender" varchar(100) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "admin_id" bigint NOT NULL UNIQUE REFERENCES "app_customuser" ("id") DEFERRABLE INITIALLY DEFERRED);
INSERT INTO app_staff VALUES(2,'Kalyan Nagar','Female','2023-05-03 05:35:47.566774','2023-05-03 05:35:47.566774',14);
INSERT INTO app_staff VALUES(3,'Bangalore','Female','2023-05-06 12:36:10.925098','2023-05-06 12:36:10.925098',18);
CREATE TABLE IF NOT EXISTS "app_subject" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(100) NOT NULL, "created_at" datetime NOT NULL, "updated_at" date NOT NULL, "course_id" bigint NOT NULL REFERENCES "app_course" ("id") DEFERRABLE INITIALLY DEFERRED, "staff_id" bigint NOT NULL REFERENCES "app_staff" ("id") DEFERRABLE INITIALLY DEFERRED);
INSERT INTO app_subject VALUES(3,'Web Development','2023-05-03 05:39:43.333533','2023-05-03',2,2);
INSERT INTO app_subject VALUES(4,'Python Programming with Data Analysis','2023-05-03 05:40:30.286052','2023-05-03',3,2);
INSERT INTO app_subject VALUES(5,'Artificial Intelligence','2023-05-03 05:40:51.721004','2023-05-03',1,2);
INSERT INTO app_subject VALUES(6,'Database Management Systems','2023-05-06 12:37:42.328624','2023-05-06',2,3);
CREATE TABLE IF NOT EXISTS "app_attendance_report" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "attendance_id_id" bigint NOT NULL REFERENCES "app_attendance" ("id") DEFERRABLE INITIALLY DEFERRED, "student_id_id" bigint NOT NULL REFERENCES "app_student" ("id") DEFERRABLE INITIALLY DEFERRED);
INSERT INTO app_attendance_report VALUES(10,'2023-05-03 05:49:28.909463','2023-05-03 05:49:28.909463',8,2);
INSERT INTO app_attendance_report VALUES(11,'2023-05-03 05:49:28.915780','2023-05-03 05:49:28.915780',8,4);
INSERT INTO app_attendance_report VALUES(12,'2023-05-03 05:49:28.927798','2023-05-03 05:49:28.927798',8,9);
INSERT INTO app_attendance_report VALUES(13,'2023-05-03 05:49:42.449981','2023-05-03 05:49:42.449981',9,8);
INSERT INTO app_attendance_report VALUES(14,'2023-05-03 05:49:53.369536','2023-05-03 05:49:53.369536',10,6);
INSERT INTO app_attendance_report VALUES(15,'2023-05-03 05:49:53.373867','2023-05-03 05:49:53.373867',10,7);
INSERT INTO app_attendance_report VALUES(16,'2023-05-03 07:49:28.786284','2023-05-03 07:49:28.786284',11,2);
INSERT INTO app_attendance_report VALUES(17,'2023-05-03 07:49:28.794459','2023-05-03 07:49:28.794459',11,4);
INSERT INTO app_attendance_report VALUES(18,'2023-05-03 07:49:28.807315','2023-05-03 07:49:28.807315',11,9);
INSERT INTO app_attendance_report VALUES(19,'2023-05-03 07:50:38.303271','2023-05-03 07:50:38.303271',12,6);
INSERT INTO app_attendance_report VALUES(20,'2023-05-03 07:50:38.312585','2023-05-03 07:50:38.312585',12,7);
INSERT INTO app_attendance_report VALUES(23,'2023-05-05 14:52:11.906966','2023-05-05 14:52:11.906966',14,8);
INSERT INTO app_attendance_report VALUES(24,'2023-05-05 14:53:06.952182','2023-05-05 14:53:06.952182',15,8);
INSERT INTO app_attendance_report VALUES(25,'2023-05-06 09:20:37.125429','2023-05-06 09:20:37.125429',17,8);
INSERT INTO app_attendance_report VALUES(31,'2023-05-06 12:51:10.275619','2023-05-06 12:51:10.275619',20,2);
INSERT INTO app_attendance_report VALUES(32,'2023-05-06 12:51:10.289626','2023-05-06 12:51:10.289626',20,4);
INSERT INTO app_attendance_report VALUES(33,'2023-05-06 12:51:10.289626','2023-05-06 12:51:10.289626',20,9);
INSERT INTO app_attendance_report VALUES(34,'2023-05-06 12:51:10.289626','2023-05-06 12:51:10.289626',20,12);
INSERT INTO app_attendance_report VALUES(35,'2023-05-06 15:43:00.681548','2023-05-06 15:43:00.681548',21,2);
INSERT INTO app_attendance_report VALUES(36,'2023-05-06 15:43:00.686964','2023-05-06 15:43:00.686964',21,4);
INSERT INTO app_attendance_report VALUES(37,'2023-05-06 16:43:16.762315','2023-05-06 16:43:16.762315',22,2);
INSERT INTO app_attendance_report VALUES(38,'2023-05-06 16:43:16.767973','2023-05-06 16:43:16.767973',22,4);
INSERT INTO app_attendance_report VALUES(39,'2023-05-06 16:43:16.773153','2023-05-06 16:43:16.773153',22,9);
INSERT INTO app_attendance_report VALUES(40,'2023-05-06 18:27:47.182369','2023-05-06 18:27:47.182369',23,10);
INSERT INTO app_attendance_report VALUES(41,'2023-05-06 18:30:34.734024','2023-05-06 18:30:34.734024',24,14);
INSERT INTO app_attendance_report VALUES(42,'2023-05-07 11:03:49.367950','2023-05-07 11:03:49.367950',25,4);
INSERT INTO app_attendance_report VALUES(43,'2023-05-07 11:03:49.377901','2023-05-07 11:03:49.377901',25,9);
INSERT INTO app_attendance_report VALUES(44,'2023-05-07 11:03:49.388121','2023-05-07 11:03:49.388121',25,12);
INSERT INTO app_attendance_report VALUES(45,'2023-05-07 11:03:49.398157','2023-05-07 11:03:49.398157',25,14);
INSERT INTO app_attendance_report VALUES(46,'2023-05-08 06:10:44.756955','2023-05-08 06:10:44.756955',26,4);
INSERT INTO app_attendance_report VALUES(47,'2023-05-08 06:10:44.756955','2023-05-08 06:10:44.756955',26,9);
INSERT INTO app_attendance_report VALUES(48,'2023-05-08 06:10:44.772576','2023-05-08 06:10:44.772576',26,12);
INSERT INTO app_attendance_report VALUES(49,'2023-05-08 16:49:25.871914','2023-05-08 16:49:25.871914',27,8);
INSERT INTO app_attendance_report VALUES(50,'2023-05-08 16:49:25.879920','2023-05-08 16:49:25.879920',27,10);
INSERT INTO app_attendance_report VALUES(51,'2023-05-26 15:56:12.983461','2023-05-26 15:56:12.983461',28,7);
INSERT INTO app_attendance_report VALUES(52,'2023-05-26 15:56:31.150394','2023-05-26 15:56:31.150394',29,8);
INSERT INTO app_attendance_report VALUES(53,'2023-05-26 15:56:31.166024','2023-05-26 15:56:31.166024',29,10);
INSERT INTO app_attendance_report VALUES(54,'2023-05-26 15:56:45.061858','2023-05-26 15:56:45.061858',30,2);
INSERT INTO app_attendance_report VALUES(55,'2023-05-26 15:56:45.077474','2023-05-26 15:56:45.077474',30,4);
INSERT INTO app_attendance_report VALUES(56,'2023-05-26 15:56:45.077474','2023-05-26 15:56:45.077474',30,9);
INSERT INTO app_attendance_report VALUES(57,'2023-05-26 15:56:45.077474','2023-05-26 15:56:45.077474',30,12);
INSERT INTO app_attendance_report VALUES(58,'2023-05-26 15:57:21.467755','2023-05-26 15:57:21.467755',31,9);
INSERT INTO app_attendance_report VALUES(59,'2023-05-26 15:57:21.467755','2023-05-26 15:57:21.467755',31,12);
INSERT INTO app_attendance_report VALUES(60,'2023-05-26 15:57:21.467755','2023-05-26 15:57:21.467755',31,14);
INSERT INTO app_attendance_report VALUES(61,'2023-05-26 16:14:19.231679','2023-05-26 16:14:19.231679',32,2);
INSERT INTO app_attendance_report VALUES(62,'2023-05-26 16:14:19.247303','2023-05-26 16:14:19.247303',32,4);
INSERT INTO app_attendance_report VALUES(63,'2023-05-26 16:14:19.247303','2023-05-26 16:14:19.247303',32,9);
INSERT INTO app_attendance_report VALUES(64,'2023-05-26 16:14:19.247303','2023-05-26 16:14:19.247303',32,12);
INSERT INTO app_attendance_report VALUES(65,'2023-05-26 16:14:19.262930','2023-05-26 16:14:19.262930',32,14);
CREATE TABLE IF NOT EXISTS "app_attendance" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "attendance_date" date NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "subject_id_id" bigint NOT NULL REFERENCES "app_subject" ("id") DEFERRABLE INITIALLY DEFERRED, "session_year_id_id" bigint NOT NULL REFERENCES "app_session_year" ("id") DEFERRABLE INITIALLY DEFERRED);
INSERT INTO app_attendance VALUES(8,'2023-05-01','2023-05-03 05:49:28.888776','2023-05-07 04:58:32.519053',3,2);
INSERT INTO app_attendance VALUES(9,'2023-05-01','2023-05-03 05:49:42.379003','2023-05-07 04:58:35.732367',4,2);
INSERT INTO app_attendance VALUES(10,'2023-05-01','2023-05-03 05:49:53.298728','2023-05-07 04:58:20.988422',5,2);
INSERT INTO app_attendance VALUES(11,'2023-05-02','2023-05-03 07:49:28.719319','2023-05-03 07:49:28.719319',3,2);
INSERT INTO app_attendance VALUES(12,'2023-04-21','2023-05-03 07:50:38.234912','2023-05-03 07:50:38.234912',5,2);
INSERT INTO app_attendance VALUES(14,'2023-05-01','2023-05-05 14:52:11.891589','2023-05-07 04:58:09.380010',4,2);
INSERT INTO app_attendance VALUES(15,'2023-05-05','2023-05-05 14:53:06.952182','2023-05-07 04:58:06.160381',4,2);
INSERT INTO app_attendance VALUES(17,'2023-05-03','2023-05-06 09:20:37.115526','2023-05-07 04:58:01.476744',4,2);
INSERT INTO app_attendance VALUES(20,'2023-05-05','2023-05-06 12:51:10.275619','2023-05-06 12:51:10.275619',6,2);
INSERT INTO app_attendance VALUES(21,'2023-05-06','2023-05-06 15:43:00.676706','2023-05-06 15:43:00.676706',6,2);
INSERT INTO app_attendance VALUES(22,'2023-05-06','2023-05-06 16:43:16.756314','2023-05-06 16:43:16.756314',3,2);
INSERT INTO app_attendance VALUES(23,'2023-05-06','2023-05-06 18:27:47.176351','2023-05-06 18:27:47.176351',4,2);
INSERT INTO app_attendance VALUES(24,'2023-05-07','2023-05-06 18:30:34.729281','2023-05-06 18:30:34.729281',3,2);
INSERT INTO app_attendance VALUES(25,'2023-05-07','2023-05-07 11:03:49.367950','2023-05-07 11:03:49.367950',6,2);
INSERT INTO app_attendance VALUES(26,'2023-05-08','2023-05-08 06:10:44.741346','2023-05-08 06:10:44.741346',3,2);
INSERT INTO app_attendance VALUES(27,'2023-05-08','2023-05-08 16:49:25.867917','2023-05-08 16:49:25.867917',4,2);
INSERT INTO app_attendance VALUES(28,'2023-05-26','2023-05-26 15:56:12.983461','2023-05-26 15:56:12.983461',5,2);
INSERT INTO app_attendance VALUES(29,'2023-05-26','2023-05-26 15:56:31.150394','2023-05-26 15:56:31.150394',4,2);
INSERT INTO app_attendance VALUES(30,'2023-05-26','2023-05-26 15:56:45.061858','2023-05-26 15:56:45.061858',3,2);
INSERT INTO app_attendance VALUES(31,'2023-05-26','2023-05-26 15:57:21.452137','2023-05-26 15:57:21.452137',6,2);
INSERT INTO app_attendance VALUES(32,'2023-05-10','2023-05-26 16:14:19.231679','2023-05-26 16:14:19.231679',3,2);
DELETE FROM sqlite_sequence;
INSERT INTO sqlite_sequence VALUES('django_migrations',26);
INSERT INTO sqlite_sequence VALUES('django_content_type',13);
INSERT INTO sqlite_sequence VALUES('auth_permission',52);
INSERT INTO sqlite_sequence VALUES('auth_group',0);
INSERT INTO sqlite_sequence VALUES('django_admin_log',80);
INSERT INTO sqlite_sequence VALUES('app_customuser',19);
INSERT INTO sqlite_sequence VALUES('app_session_year',2);
INSERT INTO sqlite_sequence VALUES('app_course',4);
INSERT INTO sqlite_sequence VALUES('app_student',14);
INSERT INTO sqlite_sequence VALUES('app_staff',3);
INSERT INTO sqlite_sequence VALUES('app_subject',6);
INSERT INTO sqlite_sequence VALUES('app_attendance',32);
INSERT INTO sqlite_sequence VALUES('app_attendance_report',65);
CREATE UNIQUE INDEX "django_content_type_app_label_model_76bd3d3b_uniq" ON "django_content_type" ("app_label", "model");
CREATE UNIQUE INDEX "auth_group_permissions_group_id_permission_id_0cd325b0_uniq" ON "auth_group_permissions" ("group_id", "permission_id");
CREATE INDEX "auth_group_permissions_group_id_b120cbf9" ON "auth_group_permissions" ("group_id");
CREATE INDEX "auth_group_permissions_permission_id_84c5c92e" ON "auth_group_permissions" ("permission_id");
CREATE UNIQUE INDEX "auth_permission_content_type_id_codename_01ab375a_uniq" ON "auth_permission" ("content_type_id", "codename");
CREATE INDEX "auth_permission_content_type_id_2f476e4b" ON "auth_permission" ("content_type_id");
CREATE UNIQUE INDEX "app_customuser_groups_customuser_id_group_id_a5a0ca22_uniq" ON "app_customuser_groups" ("customuser_id", "group_id");
CREATE INDEX "app_customuser_groups_customuser_id_164d073f" ON "app_customuser_groups" ("customuser_id");
CREATE INDEX "app_customuser_groups_group_id_47e49ebd" ON "app_customuser_groups" ("group_id");
CREATE UNIQUE INDEX "app_customuser_user_permissions_customuser_id_permission_id_22e31019_uniq" ON "app_customuser_user_permissions" ("customuser_id", "permission_id");
CREATE INDEX "app_customuser_user_permissions_customuser_id_4bcbaafb" ON "app_customuser_user_permissions" ("customuser_id");
CREATE INDEX "app_customuser_user_permissions_permission_id_c5920c75" ON "app_customuser_user_permissions" ("permission_id");
CREATE INDEX "django_admin_log_content_type_id_c4bce8eb" ON "django_admin_log" ("content_type_id");
CREATE INDEX "django_admin_log_user_id_c564eba6" ON "django_admin_log" ("user_id");
CREATE INDEX "django_session_expire_date_a5c62663" ON "django_session" ("expire_date");
CREATE INDEX "app_student_course_id_id_f104d091" ON "app_student" ("course_id_id");
CREATE INDEX "app_student_session_year_id_id_92f4c3bd" ON "app_student" ("session_year_id_id");
CREATE INDEX "app_subject_course_id_895f8ed2" ON "app_subject" ("course_id");
CREATE INDEX "app_subject_staff_id_ba4d423b" ON "app_subject" ("staff_id");
CREATE INDEX "app_attendance_report_attendance_id_id_77364fff" ON "app_attendance_report" ("attendance_id_id");
CREATE INDEX "app_attendance_report_student_id_id_0662b98f" ON "app_attendance_report" ("student_id_id");
CREATE INDEX "app_attendance_subject_id_id_a8c5dfd2" ON "app_attendance" ("subject_id_id");
CREATE INDEX "app_attendance_session_year_id_id_e46fc579" ON "app_attendance" ("session_year_id_id");
COMMIT;