Not declaring message ID anymore

This commit is contained in:
WilliamMiceli
2019-12-04 17:56:10 -05:00
parent 8842492263
commit 5025f6aa49

View File

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