diff --git a/scripts/friendbook.sql b/scripts/friendbook.sql index 98d7cb3..c4791e4 100644 --- a/scripts/friendbook.sql +++ b/scripts/friendbook.sql @@ -44,4 +44,9 @@ INSERT INTO messages (messageID, sender, recipient, message, date, haveread) VALUES ('1', 'user1', 'user2', 'hello, how are you', now(), 'Y'), - ('2', 'user2', 'user1', 'im doing good, thanks', now(), 'N'); \ No newline at end of file + ('2', 'user2', 'user1', 'im doing good, thanks', now(), 'N'); + +INSERT INTO friendList + (username, friend, confirm) +VALUES + ('user2', 'user1', 'false') \ No newline at end of file