added value into friendList

This commit is contained in:
Logan McInnis
2019-12-04 17:08:39 -05:00
parent de6ac7132f
commit b7d54f1fbc

View File

@@ -45,3 +45,8 @@ INSERT INTO messages
VALUES
('1', 'user1', 'user2', 'hello, how are you', now(), 'Y'),
('2', 'user2', 'user1', 'im doing good, thanks', now(), 'N');
INSERT INTO friendList
(username, friend, confirm)
VALUES
('user2', 'user1', 'false')