@@ -8,9 +8,6 @@ FROM public."LearningAPI_opportunity";
8
8
SELECT *
9
9
FROM public." LearningAPI_learningrecord" ;
10
10
11
- SELECT *
12
- FROM public." LearningAPI_LearningRecordEntry" ;
13
-
14
11
SELECT *
15
12
FROM public." socialaccount_socialaccount" ;
16
13
@@ -25,59 +22,35 @@ FROM public."authtoken_token";
25
22
26
23
select * from pg_catalog .pg_tables ;
27
24
28
- SELECT *
29
- FROM public." LearningAPI_nssusercohort" ;
30
-
31
- INSERT INTO public." LearningAPI_nssusercohort" (cohort_id, nss_user_id)
32
- VALUES (1 , 6 );
33
-
34
-
35
- DELETE from public." LearningAPI_nssusercohort"
36
- where id = 2 ;
37
-
38
-
39
- INSERT INTO public." LearningAPI_course" (name)
40
- VALUES (' JavaScript and React' );
41
-
42
- INSERT INTO public." LearningAPI_book" (name, course_id)
43
- VALUES (' Bangazon' , 1 );
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
-
25
+ SELECT * FROM public." LearningAPI_studentpersonality" ;
76
26
27
+ INSERT INTO public." LearningAPI_studentpersonality"
28
+ (student_id, briggs_myers_type,
29
+ bfi_extraversion, bfi_agreeableness, bfi_conscientiousness,
30
+ bfi_neuroticism, bfi_openness)
31
+ VALUES
32
+ (2 , ' ENTJ-A' , 69 , 96 , 73 , 0 , 94 );
77
33
34
+ SELECT * FROM public." LearningAPI_capstone" ;
35
+ SELECT * FROM public." LearningAPI_proposalstatus" ;
78
36
37
+ INSERT INTO public." LearningAPI_capstonetimeline"
38
+ (capstone_id, status_id, date )
39
+ VALUES
40
+ (3 , 1 , ' 2022-11-04' );
79
41
80
42
43
+ INSERT INTO public." LearningAPI_capstone"
44
+ (proposal_url, repo_url, course_id,
45
+ student_id, description)
46
+ VALUES
47
+ (
48
+ ' http://www.claire.com' ,
49
+ ' http://www.claire.com' ,
50
+ 3 ,
51
+ 56 ,
52
+ ' Client side capstone proposal'
53
+ );
81
54
82
55
83
56
@@ -108,11 +81,6 @@ GROUP BY "LearningAPI_cohort"."id"
108
81
;
109
82
110
83
111
-
112
-
113
-
114
-
115
-
116
84
select * from public." LearningAPI_learningrecord" ;
117
85
118
86
@@ -128,4 +96,4 @@ left outer join public."LearningAPI_learningrecord" r
128
96
and
129
97
r .student_id = 19
130
98
where r .achieved is NULL
131
- order by w .tier ;
99
+ order by w .tier ;
0 commit comments