Fixed boolean values

This commit is contained in:
WilliamMiceli
2019-12-04 21:06:48 -05:00
parent 9088543471
commit 7967ffaf13

View File

@@ -51,5 +51,5 @@ VALUES
INSERT INTO friendList
(username, friend, confirm)
VALUES
('user2', 'user1', 'false'),
('user1', 'user3', 'true');
('user2', 'user1', false),
('user1', 'user3', true);