-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.sql
53 lines (37 loc) · 1.29 KB
/
database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
CREATE DATABASE textagram;
Select * from users;
INSERT INTO posts (
title,
context,
votes,
hashtags,
user_id
)
VALUES ('One best quote regarding a honest friendship', 'Bestfriend is not just a word. A best friend is someone who is there for you, no matter what. Thick or thin. I can label anyone as a friend. But a bestfriend..? That is something that needs to be earned. A bestfriend knows me sometimes more than I know myself. Bestfriends share tears and laughs. You can trust them with anything and everything. I have a bunch of friends, but only a few that I can count on completely', 0, 'friendship friends bestFriend', 2);
INSERT INTO posts (
title,
context,
votes,
hashtags,
user_id
)
VALUES ('One of best quote from Forrest Gump', '“My mama always said, ‘Life was like a box of chocolates. You never know what you’re gonna get." -Forrest Gump', 0, 'movie forrest gump life', 2);
INSERT INTO posts (
title,
context,
votes,
hashtags,
user_id
)
VALUES ('One of best quote from Rush', '“A wise man can learn more from his enemies than a fool from his friends." –Niki Lauda', 0, 'movie Rush inspirational', 2);
INSERT INTO followers (
following_id,
follwered_id
)
VALUES (1, 2);
INSERT INTO comments (
text,
post_id,
user_id
)
VALUES ('First post!! This is great!',1, 2);