aboutsummaryrefslogtreecommitdiff
path: root/backend/database/categories.sql
diff options
context:
space:
mode:
Diffstat (limited to 'backend/database/categories.sql')
-rw-r--r--backend/database/categories.sql12
1 files changed, 11 insertions, 1 deletions
diff --git a/backend/database/categories.sql b/backend/database/categories.sql
index 5cadad5..6bbf9b0 100644
--- a/backend/database/categories.sql
+++ b/backend/database/categories.sql
@@ -2,4 +2,14 @@ INSERT INTO categories(id, name) VALUES
2(1, 'CM'), 2(1, 'CM'),
3(2, 'No SLA'), 3(2, 'No SLA'),
4(3, 'Inbounds SLA'), 4(3, 'Inbounds SLA'),
5(4, 'Any%'); \ No newline at end of file 5(4, 'Any%'),
6(5, 'All Courses');
7
8INSERT INTO game_categories(id, game_id, category_id) VALUES
9(1, 1, 1),
10(2, 1, 2),
11(3, 1, 3),
12(4, 1, 4),
13(5, 2, 1),
14(6, 2, 4),
15(7, 2, 5); \ No newline at end of file