-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed.sql
More file actions
17 lines (15 loc) · 1.22 KB
/
Copy pathseed.sql
File metadata and controls
17 lines (15 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
USE `twitterjs`;
INSERT INTO `users` (`id`, `name`, `pictureUrl`) VALUES (NULL, 'Zeke', NULL);
INSERT INTO `users` (`id`, `name`, `pictureUrl`) VALUES (NULL, 'Christain', NULL);
INSERT INTO `users` (`id`, `name`, `pictureUrl`) VALUES (NULL, 'Tessa', NULL);
INSERT INTO `users` (`id`, `name`, `pictureUrl`) VALUES (NULL, 'Nimit', NULL);
INSERT INTO `users` (`id`, `name`, `pictureUrl`) VALUES (NULL, 'David', NULL);
INSERT INTO `users` (`id`, `name`, `pictureUrl`) VALUES (NULL, 'Fullstack', NULL);
INSERT INTO `users` (`id`, `name`, `pictureUrl`) VALUES (NULL, 'Class 111', NULL);
INSERT INTO `tweets` (`id`, `userId`, `tweet`) VALUES (NULL, '1', 'Fullstack is great! #fsalove');
INSERT INTO `tweets` (`id`, `userId`, `tweet`) VALUES (NULL, '2', 'Fullstack academy is amazing');
INSERT INTO `tweets` (`id`, `userId`, `tweet`) VALUES (NULL, '3', 'Fullstack academy instructor is very cool');
INSERT INTO `tweets` (`id`, `userId`, `tweet`) VALUES (NULL, '4', 'Zeke is mindblowing');
INSERT INTO `tweets` (`id`, `userId`, `tweet`) VALUES (NULL, '5', 'Charlotte is amazing');
INSERT INTO `tweets` (`id`, `userId`, `tweet`) VALUES (NULL, '6', 'bla bla bla');
INSERT INTO `tweets` (`id`, `userId`, `tweet`) VALUES (NULL, '7', 'bla bla bla is so whatever');