-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup.sql
More file actions
2785 lines (2045 loc) · 117 KB
/
Copy pathbackup.sql
File metadata and controls
2785 lines (2045 loc) · 117 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
\restrict palVs49ZeXZ1Ae1ed3qJRWURA84t7uRpAUeFKlFnZxOFJsrMSJd6nXjoMKOEcQs
-- Dumped from database version 15.14 (Debian 15.14-1.pgdg13+1)
-- Dumped by pg_dump version 15.14 (Debian 15.14-1.pgdg13+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: academics_course; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.academics_course (
id bigint NOT NULL,
title character varying(255) NOT NULL,
description text NOT NULL,
created timestamp with time zone NOT NULL,
teacher_id integer,
start_date date,
end_date date
);
ALTER TABLE public.academics_course OWNER TO scms_admin;
--
-- Name: academics_course_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.academics_course ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.academics_course_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: academics_enrollment; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.academics_enrollment (
id bigint NOT NULL,
enrolled_at timestamp with time zone NOT NULL,
course_id bigint NOT NULL,
student_id integer NOT NULL,
completed boolean DEFAULT false NOT NULL,
completed_at timestamp with time zone
);
ALTER TABLE public.academics_enrollment OWNER TO scms_admin;
--
-- Name: academics_enrollment_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.academics_enrollment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.academics_enrollment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: academics_lesson; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.academics_lesson (
id bigint NOT NULL,
title character varying(255) NOT NULL,
content text NOT NULL,
"position" smallint,
is_done boolean NOT NULL,
created timestamp with time zone NOT NULL,
course_id bigint NOT NULL,
scheduled_date date,
CONSTRAINT academics_lesson_position_check CHECK (("position" >= 0))
);
ALTER TABLE public.academics_lesson OWNER TO scms_admin;
--
-- Name: academics_lesson_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.academics_lesson ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.academics_lesson_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: academics_lessonchecklistitem; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.academics_lessonchecklistitem (
id bigint NOT NULL,
text character varying(255) NOT NULL,
completed boolean NOT NULL,
"position" smallint,
lesson_id bigint NOT NULL,
CONSTRAINT academics_lessonchecklistitem_position_check CHECK (("position" >= 0))
);
ALTER TABLE public.academics_lessonchecklistitem OWNER TO scms_admin;
--
-- Name: academics_lessonchecklistitem_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.academics_lessonchecklistitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.academics_lessonchecklistitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: academics_lessonprogress; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.academics_lessonprogress (
id integer NOT NULL,
completed boolean DEFAULT false NOT NULL,
completed_at timestamp with time zone,
last_accessed timestamp with time zone DEFAULT now() NOT NULL,
student_id integer NOT NULL,
lesson_id integer NOT NULL
);
ALTER TABLE public.academics_lessonprogress OWNER TO scms_admin;
--
-- Name: academics_lessonprogress_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
CREATE SEQUENCE public.academics_lessonprogress_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.academics_lessonprogress_id_seq OWNER TO scms_admin;
--
-- Name: academics_lessonprogress_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: scms_admin
--
ALTER SEQUENCE public.academics_lessonprogress_id_seq OWNED BY public.academics_lessonprogress.id;
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO scms_admin;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.auth_group_permissions (
id bigint NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO scms_admin;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: scms_admin
--
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 scms_admin;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_permission_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.auth_user (
id integer NOT NULL,
password character varying(128) NOT NULL,
last_login timestamp with time zone,
is_superuser boolean NOT NULL,
username character varying(150) NOT NULL,
first_name character varying(150) NOT NULL,
last_name character varying(150) NOT NULL,
email character varying(254) NOT NULL,
is_staff boolean NOT NULL,
is_active boolean NOT NULL,
date_joined timestamp with time zone NOT NULL
);
ALTER TABLE public.auth_user OWNER TO scms_admin;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.auth_user_groups (
id bigint NOT NULL,
user_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.auth_user_groups OWNER TO scms_admin;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.auth_user_user_permissions (
id bigint NOT NULL,
user_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_user_user_permissions OWNER TO scms_admin;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_user_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: scms_admin
--
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 scms_admin;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_admin_log_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_clockedschedule; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.django_celery_beat_clockedschedule (
id integer NOT NULL,
clocked_time timestamp with time zone NOT NULL
);
ALTER TABLE public.django_celery_beat_clockedschedule OWNER TO scms_admin;
--
-- Name: django_celery_beat_clockedschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.django_celery_beat_clockedschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_clockedschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_crontabschedule; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.django_celery_beat_crontabschedule (
id integer NOT NULL,
minute character varying(240) NOT NULL,
hour character varying(96) NOT NULL,
day_of_week character varying(64) NOT NULL,
day_of_month character varying(124) NOT NULL,
month_of_year character varying(64) NOT NULL,
timezone character varying(63) NOT NULL
);
ALTER TABLE public.django_celery_beat_crontabschedule OWNER TO scms_admin;
--
-- Name: django_celery_beat_crontabschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.django_celery_beat_crontabschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_crontabschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_intervalschedule; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.django_celery_beat_intervalschedule (
id integer NOT NULL,
every integer NOT NULL,
period character varying(24) NOT NULL
);
ALTER TABLE public.django_celery_beat_intervalschedule OWNER TO scms_admin;
--
-- Name: django_celery_beat_intervalschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.django_celery_beat_intervalschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_intervalschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_periodictask; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.django_celery_beat_periodictask (
id integer NOT NULL,
name character varying(200) NOT NULL,
task character varying(200) NOT NULL,
args text NOT NULL,
kwargs text NOT NULL,
queue character varying(200),
exchange character varying(200),
routing_key character varying(200),
expires timestamp with time zone,
enabled boolean NOT NULL,
last_run_at timestamp with time zone,
total_run_count integer NOT NULL,
date_changed timestamp with time zone NOT NULL,
description text NOT NULL,
crontab_id integer,
interval_id integer,
solar_id integer,
one_off boolean NOT NULL,
start_time timestamp with time zone,
priority integer,
headers text NOT NULL,
clocked_id integer,
expire_seconds integer,
CONSTRAINT django_celery_beat_periodictask_expire_seconds_check CHECK ((expire_seconds >= 0)),
CONSTRAINT django_celery_beat_periodictask_priority_check CHECK ((priority >= 0)),
CONSTRAINT django_celery_beat_periodictask_total_run_count_check CHECK ((total_run_count >= 0))
);
ALTER TABLE public.django_celery_beat_periodictask OWNER TO scms_admin;
--
-- Name: django_celery_beat_periodictask_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.django_celery_beat_periodictask ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_periodictask_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_periodictasks; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.django_celery_beat_periodictasks (
ident smallint NOT NULL,
last_update timestamp with time zone NOT NULL
);
ALTER TABLE public.django_celery_beat_periodictasks OWNER TO scms_admin;
--
-- Name: django_celery_beat_solarschedule; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.django_celery_beat_solarschedule (
id integer NOT NULL,
event character varying(24) NOT NULL,
latitude numeric(9,6) NOT NULL,
longitude numeric(9,6) NOT NULL
);
ALTER TABLE public.django_celery_beat_solarschedule OWNER TO scms_admin;
--
-- Name: django_celery_beat_solarschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.django_celery_beat_solarschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_solarschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: scms_admin
--
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 scms_admin;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_content_type_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.django_migrations (
id bigint NOT NULL,
app character varying(255) NOT NULL,
name character varying(255) NOT NULL,
applied timestamp with time zone NOT NULL
);
ALTER TABLE public.django_migrations OWNER TO scms_admin;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_migrations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: scms_admin
--
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 scms_admin;
--
-- Name: notifications_notificationdelivery; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.notifications_notificationdelivery (
id bigint NOT NULL,
channel character varying(10) NOT NULL,
status character varying(10) NOT NULL,
message text NOT NULL,
sent_at timestamp with time zone,
error text NOT NULL,
created_at timestamp with time zone NOT NULL,
recipient_id integer NOT NULL,
schedule_id bigint NOT NULL
);
ALTER TABLE public.notifications_notificationdelivery OWNER TO scms_admin;
--
-- Name: notifications_notificationdelivery_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.notifications_notificationdelivery ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.notifications_notificationdelivery_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: notifications_notificationpreference; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.notifications_notificationpreference (
id bigint NOT NULL,
email_enabled boolean NOT NULL,
in_app_enabled boolean NOT NULL,
push_enabled boolean NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.notifications_notificationpreference OWNER TO scms_admin;
--
-- Name: notifications_notificationpreference_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.notifications_notificationpreference ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.notifications_notificationpreference_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: notifications_notificationschedule; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.notifications_notificationschedule (
id bigint NOT NULL,
object_id integer NOT NULL,
scheduled_for timestamp with time zone NOT NULL,
context jsonb NOT NULL,
channels jsonb NOT NULL,
sent boolean NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
content_type_id integer NOT NULL,
template_id bigint NOT NULL,
CONSTRAINT notifications_notificationschedule_object_id_check CHECK ((object_id >= 0))
);
ALTER TABLE public.notifications_notificationschedule OWNER TO scms_admin;
--
-- Name: notifications_notificationschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.notifications_notificationschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.notifications_notificationschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: notifications_notificationschedule_recipients; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.notifications_notificationschedule_recipients (
id bigint NOT NULL,
notificationschedule_id bigint NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.notifications_notificationschedule_recipients OWNER TO scms_admin;
--
-- Name: notifications_notificationschedule_recipients_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.notifications_notificationschedule_recipients ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.notifications_notificationschedule_recipients_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: notifications_notificationtemplate; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.notifications_notificationtemplate (
id bigint NOT NULL,
name character varying(100) NOT NULL,
subject character varying(200) NOT NULL,
body text NOT NULL,
channels jsonb NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.notifications_notificationtemplate OWNER TO scms_admin;
--
-- Name: notifications_notificationtemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.notifications_notificationtemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.notifications_notificationtemplate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: timetable_classsession; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.timetable_classsession (
id bigint NOT NULL,
title character varying(200) NOT NULL,
start_at timestamp with time zone NOT NULL,
duration_minutes integer NOT NULL,
notify_before_minutes integer NOT NULL,
active boolean NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
course_id bigint NOT NULL,
lesson_id bigint,
CONSTRAINT timetable_classsession_duration_minutes_check CHECK ((duration_minutes >= 0)),
CONSTRAINT timetable_classsession_notify_before_minutes_check CHECK ((notify_before_minutes >= 0))
);
ALTER TABLE public.timetable_classsession OWNER TO scms_admin;
--
-- Name: timetable_classsession_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.timetable_classsession ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.timetable_classsession_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: timetable_timetable; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.timetable_timetable (
id bigint NOT NULL,
day_of_week character varying(10) NOT NULL,
start_time time without time zone NOT NULL,
end_time time without time zone NOT NULL,
location character varying(255) NOT NULL,
notes text NOT NULL,
is_active boolean NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
course_id bigint NOT NULL,
lesson_id bigint,
teacher_id integer NOT NULL
);
ALTER TABLE public.timetable_timetable OWNER TO scms_admin;
--
-- Name: timetable_timetable_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.timetable_timetable ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.timetable_timetable_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: timetable_timetablenotification; Type: TABLE; Schema: public; Owner: scms_admin
--
CREATE TABLE public.timetable_timetablenotification (
id bigint NOT NULL,
notification_type character varying(20) NOT NULL,
message text NOT NULL,
send_to_students boolean NOT NULL,
send_to_teachers boolean NOT NULL,
sent_at timestamp with time zone,
is_sent boolean NOT NULL,
created_at timestamp with time zone NOT NULL,
timetable_entry_id bigint NOT NULL
);
ALTER TABLE public.timetable_timetablenotification OWNER TO scms_admin;
--
-- Name: timetable_timetablenotification_id_seq; Type: SEQUENCE; Schema: public; Owner: scms_admin
--
ALTER TABLE public.timetable_timetablenotification ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.timetable_timetablenotification_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: academics_lessonprogress id; Type: DEFAULT; Schema: public; Owner: scms_admin
--
ALTER TABLE ONLY public.academics_lessonprogress ALTER COLUMN id SET DEFAULT nextval('public.academics_lessonprogress_id_seq'::regclass);
--
-- Data for Name: academics_course; Type: TABLE DATA; Schema: public; Owner: scms_admin
--
COPY public.academics_course (id, title, description, created, teacher_id, start_date, end_date) FROM stdin;
1 Introduction to Computer Science Fundamentals of computing, algorithms and problem solving. 2025-10-13 16:49:44.001434+00 \N \N \N
2 Programming in Python Core Python language features and practical programming. 2025-10-13 16:49:44.064998+00 \N \N \N
3 Data Structures & Algorithms Common data structures and algorithm design techniques. 2025-10-13 16:49:44.071344+00 \N \N \N
5 Web Development with Django Build web apps with Django: models, views, templates and auth. 2025-10-13 16:49:44.078263+00 \N \N \N
6 Operating Systems & Networking Intro to OS concepts and fundamental networking principles. 2025-10-13 16:49:44.080938+00 \N \N \N
7 Software Engineering Practices Design, testing and team practices for reliable software. 2025-10-13 16:49:44.083842+00 \N \N \N
8 Microeconomics Foundations of microeconomics: consumers, firms and markets. 2025-10-13 16:49:44.086577+00 \N \N \N
9 Macroeconomics Aggregate economy: GDP, inflation, unemployment and policy. 2025-10-13 16:49:44.089183+00 \N \N \N
10 Intro to Econometrics Basics of data analysis and causal inference in economics. 2025-10-13 16:49:44.091784+00 \N 2025-11-01 2025-11-30
4 Databases & SQL Relational databases, SQL and basic database design. 2025-10-13 16:49:44.075639+00 \N 2025-11-01 2025-11-30
11 test 2025-12-01 15:24:12.113025+00 \N \N \N
\.
--
-- Data for Name: academics_enrollment; Type: TABLE DATA; Schema: public; Owner: scms_admin
--
COPY public.academics_enrollment (id, enrolled_at, course_id, student_id, completed, completed_at) FROM stdin;
\.
--
-- Data for Name: academics_lesson; Type: TABLE DATA; Schema: public; Owner: scms_admin
--
COPY public.academics_lesson (id, title, content, "position", is_done, created, course_id, scheduled_date) FROM stdin;
1 What is Computer Science? Lesson: What is Computer Science?\n\nIntroduction to Computer Science - detailed content. 1 f 2025-10-13 16:49:44.034032+00 1 \N
2 Algorithms & Pseudocode Lesson: Algorithms & Pseudocode\n\nIntroduction to Computer Science - detailed content. 2 f 2025-10-13 16:49:44.057382+00 1 \N
3 Basic Data Types Lesson: Basic Data Types\n\nIntroduction to Computer Science - detailed content. 3 f 2025-10-13 16:49:44.058504+00 1 \N
4 Control Flow Lesson: Control Flow\n\nIntroduction to Computer Science - detailed content. 4 f 2025-10-13 16:49:44.059448+00 1 \N
5 Functions and Procedures Lesson: Functions and Procedures\n\nIntroduction to Computer Science - detailed content. 5 f 2025-10-13 16:49:44.060305+00 1 \N
6 Basic Data Structures Lesson: Basic Data Structures\n\nIntroduction to Computer Science - detailed content. 6 f 2025-10-13 16:49:44.061042+00 1 \N
7 Complexity & Big-O Lesson: Complexity & Big-O\n\nIntroduction to Computer Science - detailed content. 7 f 2025-10-13 16:49:44.061815+00 1 \N
8 Debugging Techniques Lesson: Debugging Techniques\n\nIntroduction to Computer Science - detailed content. 8 f 2025-10-13 16:49:44.062541+00 1 \N
9 Version Control (git) Lesson: Version Control (git)\n\nIntroduction to Computer Science - detailed content. 9 f 2025-10-13 16:49:44.063323+00 1 \N
10 Next Steps & Resources Lesson: Next Steps & Resources\n\nIntroduction to Computer Science - detailed content. 10 f 2025-10-13 16:49:44.064217+00 1 \N
11 Python setup & REPL Lesson: Python setup & REPL\n\nProgramming in Python - detailed content. 1 f 2025-10-13 16:49:44.065724+00 2 \N
12 Variables and Types Lesson: Variables and Types\n\nProgramming in Python - detailed content. 2 f 2025-10-13 16:49:44.06642+00 2 \N
13 Control Flow in Python Lesson: Control Flow in Python\n\nProgramming in Python - detailed content. 3 f 2025-10-13 16:49:44.067064+00 2 \N
14 Functions and Modules Lesson: Functions and Modules\n\nProgramming in Python - detailed content. 4 f 2025-10-13 16:49:44.067694+00 2 \N
15 Data Structures: lists & tuples Lesson: Data Structures: lists & tuples\n\nProgramming in Python - detailed content. 5 f 2025-10-13 16:49:44.068289+00 2 \N
16 Dictionaries & Sets Lesson: Dictionaries & Sets\n\nProgramming in Python - detailed content. 6 f 2025-10-13 16:49:44.068747+00 2 \N
17 File I/O Lesson: File I/O\n\nProgramming in Python - detailed content. 7 f 2025-10-13 16:49:44.069542+00 2 \N
18 Error Handling Lesson: Error Handling\n\nProgramming in Python - detailed content. 8 f 2025-10-13 16:49:44.070029+00 2 \N
19 Iterators & Generators Lesson: Iterators & Generators\n\nProgramming in Python - detailed content. 9 f 2025-10-13 16:49:44.070482+00 2 \N
20 Virtualenv & Packaging Lesson: Virtualenv & Packaging\n\nProgramming in Python - detailed content. 10 f 2025-10-13 16:49:44.070934+00 2 \N
22 Stacks and Queues Lesson: Stacks and Queues\n\nData Structures & Algorithms - detailed content. 2 f 2025-10-13 16:49:44.072313+00 3 \N
23 Trees and Binary Trees Lesson: Trees and Binary Trees\n\nData Structures & Algorithms - detailed content. 3 f 2025-10-13 16:49:44.072819+00 3 \N
24 Graphs Basics Lesson: Graphs Basics\n\nData Structures & Algorithms - detailed content. 4 f 2025-10-13 16:49:44.073268+00 3 \N
25 Searching & Sorting Lesson: Searching & Sorting\n\nData Structures & Algorithms - detailed content. 5 f 2025-10-13 16:49:44.073834+00 3 \N
26 Hashing and Dictionaries Lesson: Hashing and Dictionaries\n\nData Structures & Algorithms - detailed content. 6 f 2025-10-13 16:49:44.074279+00 3 \N
27 Recursion & Divide & Conquer Lesson: Recursion & Divide & Conquer\n\nData Structures & Algorithms - detailed content. 7 f 2025-10-13 16:49:44.074541+00 3 \N
28 Greedy Algorithms Lesson: Greedy Algorithms\n\nData Structures & Algorithms - detailed content. 8 f 2025-10-13 16:49:44.074791+00 3 \N
29 Dynamic Programming Lesson: Dynamic Programming\n\nData Structures & Algorithms - detailed content. 9 f 2025-10-13 16:49:44.075062+00 3 \N
30 Algorithm Analysis Lesson: Algorithm Analysis\n\nData Structures & Algorithms - detailed content. 10 f 2025-10-13 16:49:44.075359+00 3 \N
42 Models and Migrations Lesson: Models and Migrations\n\nWeb Development with Django - detailed content. 2 f 2025-10-13 16:49:44.078751+00 5 \N
43 Admin Customisation Lesson: Admin Customisation\n\nWeb Development with Django - detailed content. 3 f 2025-10-13 16:49:44.079014+00 5 \N
44 Views and URL routing Lesson: Views and URL routing\n\nWeb Development with Django - detailed content. 4 f 2025-10-13 16:49:44.07927+00 5 \N
45 Templates and static files Lesson: Templates and static files\n\nWeb Development with Django - detailed content. 5 f 2025-10-13 16:49:44.079522+00 5 \N
46 Forms and validation Lesson: Forms and validation\n\nWeb Development with Django - detailed content. 6 f 2025-10-13 16:49:44.079758+00 5 \N
47 Authentication & Permissions Lesson: Authentication & Permissions\n\nWeb Development with Django - detailed content. 7 f 2025-10-13 16:49:44.079991+00 5 \N
48 File uploads Lesson: File uploads\n\nWeb Development with Django - detailed content. 8 f 2025-10-13 16:49:44.080226+00 5 \N
49 Testing Django apps Lesson: Testing Django apps\n\nWeb Development with Django - detailed content. 9 f 2025-10-13 16:49:44.080473+00 5 \N
50 Deployment basics Lesson: Deployment basics\n\nWeb Development with Django - detailed content. 10 f 2025-10-13 16:49:44.080713+00 5 \N
51 Processes and Threads Lesson: Processes and Threads\n\nOperating Systems & Networking - detailed content. 1 f 2025-10-13 16:49:44.081167+00 6 \N
52 Memory Management Lesson: Memory Management\n\nOperating Systems & Networking - detailed content. 2 f 2025-10-13 16:49:44.081427+00 6 \N
41 Django project setup Lesson: Django project setup\n\nWeb Development with Django - detailed content. 1 t 2025-10-13 16:49:44.078499+00 5 \N
21 Arrays and Linked Lists Lesson: Arrays and Linked Lists\n\nData Structures & Algorithms - detailed content. 1 t 2025-10-13 16:49:44.07167+00 3 \N
53 File Systems Lesson: File Systems\n\nOperating Systems & Networking - detailed content. 3 f 2025-10-13 16:49:44.081687+00 6 \N
54 I/O and Drivers Lesson: I/O and Drivers\n\nOperating Systems & Networking - detailed content. 4 f 2025-10-13 16:49:44.082104+00 6 \N
55 Concurrency basics Lesson: Concurrency basics\n\nOperating Systems & Networking - detailed content. 5 f 2025-10-13 16:49:44.082396+00 6 \N
56 Networking models (OSI/TCP/IP) Lesson: Networking models (OSI/TCP/IP)\n\nOperating Systems & Networking - detailed content. 6 f 2025-10-13 16:49:44.082652+00 6 \N
57 Sockets and TCP/UDP Lesson: Sockets and TCP/UDP\n\nOperating Systems & Networking - detailed content. 7 f 2025-10-13 16:49:44.082902+00 6 \N
58 Network troubleshooting Lesson: Network troubleshooting\n\nOperating Systems & Networking - detailed content. 8 f 2025-10-13 16:49:44.083146+00 6 \N
59 Security basics Lesson: Security basics\n\nOperating Systems & Networking - detailed content. 9 f 2025-10-13 16:49:44.083383+00 6 \N
60 System monitoring Lesson: System monitoring\n\nOperating Systems & Networking - detailed content. 10 f 2025-10-13 16:49:44.083618+00 6 \N
61 Software development lifecycle Lesson: Software development lifecycle\n\nSoftware Engineering Practices - detailed content. 1 f 2025-10-13 16:49:44.084086+00 7 \N
62 Design patterns overview Lesson: Design patterns overview\n\nSoftware Engineering Practices - detailed content. 2 f 2025-10-13 16:49:44.084337+00 7 \N
63 Modular design Lesson: Modular design\n\nSoftware Engineering Practices - detailed content. 3 f 2025-10-13 16:49:44.084578+00 7 \N
64 Unit testing Lesson: Unit testing\n\nSoftware Engineering Practices - detailed content. 4 f 2025-10-13 16:49:44.084813+00 7 \N
65 Integration testing Lesson: Integration testing\n\nSoftware Engineering Practices - detailed content. 5 f 2025-10-13 16:49:44.085088+00 7 \N
66 CI/CD basics Lesson: CI/CD basics\n\nSoftware Engineering Practices - detailed content. 6 f 2025-10-13 16:49:44.085334+00 7 \N
67 Code review best practices Lesson: Code review best practices\n\nSoftware Engineering Practices - detailed content. 7 f 2025-10-13 16:49:44.085622+00 7 \N
68 Documentation Lesson: Documentation\n\nSoftware Engineering Practices - detailed content. 8 f 2025-10-13 16:49:44.085878+00 7 \N
69 Project management basics Lesson: Project management basics\n\nSoftware Engineering Practices - detailed content. 9 f 2025-10-13 16:49:44.086118+00 7 \N
70 Maintenance and refactoring Lesson: Maintenance and refactoring\n\nSoftware Engineering Practices - detailed content. 10 f 2025-10-13 16:49:44.086352+00 7 \N
71 Supply and Demand Lesson: Supply and Demand\n\nMicroeconomics - detailed content. 1 f 2025-10-13 16:49:44.086804+00 8 \N
72 Elasticity Lesson: Elasticity\n\nMicroeconomics - detailed content. 2 f 2025-10-13 16:49:44.087045+00 8 \N
73 Consumer Choice Lesson: Consumer Choice\n\nMicroeconomics - detailed content. 3 f 2025-10-13 16:49:44.087287+00 8 \N
74 Production & Costs Lesson: Production & Costs\n\nMicroeconomics - detailed content. 4 f 2025-10-13 16:49:44.087525+00 8 \N
75 Perfect Competition Lesson: Perfect Competition\n\nMicroeconomics - detailed content. 5 f 2025-10-13 16:49:44.08776+00 8 \N
76 Monopoly & Market Power Lesson: Monopoly & Market Power\n\nMicroeconomics - detailed content. 6 f 2025-10-13 16:49:44.087996+00 8 \N
77 Oligopoly basics Lesson: Oligopoly basics\n\nMicroeconomics - detailed content. 7 f 2025-10-13 16:49:44.08823+00 8 \N
78 Market Failures Lesson: Market Failures\n\nMicroeconomics - detailed content. 8 f 2025-10-13 16:49:44.088471+00 8 \N