Skip to content

Commit 0d99b64

Browse files
author
Joshua Baert
committed
Basic database setup and creation complete schema is in db/start/tables
1 parent fb83264 commit 0d99b64

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

db/start/tables.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ VALUES (8, 'Test.assertEquals(a, 1)', 'a should equal 1', 'var a = 1', 'Sumbit T
4242

4343
INSERT INTO solutions (user_id, kata_id, script)
4444
VALUES (1, 1, 'var a = 1'),
45-
(1,2, 'let a = 1');
45+
(1,1, 'let a = 1');
4646

47-
INSERT INTO rating (user_id, kata_id, solution_id, liked)
48-
VALUES (1, null, 1, true);
47+
INSERT INTO rating (user_id, solution_id, liked)
48+
VALUES (1, 1, true);

0 commit comments

Comments
 (0)