Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added backend/.DS_Store
Binary file not shown.
2,381 changes: 2,377 additions & 4 deletions backend/src/database/practiceQuestions.json

Large diffs are not rendered by default.

3,497 changes: 3,488 additions & 9 deletions backend/src/database/prepQuestions.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions backend/src/database/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ CREATE TABLE IF NOT EXISTS practice_questions (
question TEXT,
code TEXT[],
answer JSONB,
steps JSONB,
description TEXT,
canvas_config JSONB
);
Expand All @@ -14,6 +15,7 @@ CREATE TABLE IF NOT EXISTS test_questions (
question TEXT,
code TEXT[],
answer JSONB,
steps JSONB,
description TEXT,
canvas_config JSONB
);
Expand Down
Loading