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

@@ -44,4 +44,9 @@ INSERT INTO messages
(messageID, sender, recipient, message, date, haveread) (messageID, sender, recipient, message, date, haveread)
VALUES VALUES
('1', 'user1', 'user2', 'hello, how are you', now(), 'Y'), ('1', 'user1', 'user2', 'hello, how are you', now(), 'Y'),
('2', 'user2', 'user1', 'im doing good, thanks', now(), 'N'); ('2', 'user2', 'user1', 'im doing good, thanks', now(), 'N');
INSERT INTO friendList
(username, friend, confirm)
VALUES
('user2', 'user1', 'false')