質問編集履歴
4
ソースコードの誤字訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -112,8 +112,6 @@
|
|
112
112
|
|
113
113
|
PRIMARY KEY (`parent_tweet_id`),
|
114
114
|
|
115
|
-
PRIMARY KEY (`tweet_id`),
|
116
|
-
|
117
115
|
FOREIGN KEY (`parent_tweet_id`) REFERENCES tweets(`tweet_id`),
|
118
116
|
|
119
117
|
FOREIGN KEY (`tweet_id`) REFERENCES tweets(`tweet_id`)
|
3
ソースコードの誤字訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -108,7 +108,7 @@
|
|
108
108
|
|
109
109
|
`parent_tweet_id` int not null,
|
110
110
|
|
111
|
-
`tweet_id` int not null
|
111
|
+
`tweet_id` int not null,
|
112
112
|
|
113
113
|
PRIMARY KEY (`parent_tweet_id`),
|
114
114
|
|
2
ソースコードの誤字訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -86,9 +86,7 @@
|
|
86
86
|
|
87
87
|
`content` varchar(1000) not null,
|
88
88
|
|
89
|
-
PRIMARY KEY (`tweet_id`)
|
89
|
+
PRIMARY KEY (`tweet_id`)
|
90
|
-
|
91
|
-
FOREIGN KEY (`parent_tweet_id`) REFERENCES tweets(`tweet_id`)
|
92
90
|
|
93
91
|
);
|
94
92
|
|
1
ソースコードの誤字を訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,7 +64,7 @@
|
|
64
64
|
|
65
65
|
(1, 1, 0, '元気ですか?'),
|
66
66
|
|
67
|
-
(
|
67
|
+
(2, 2, 999, '元気です') #999は存在しないのにエラーにならない?
|
68
68
|
|
69
69
|
;
|
70
70
|
|
@@ -100,7 +100,7 @@
|
|
100
100
|
|
101
101
|
(1, 1, '元気ですか?'),
|
102
102
|
|
103
|
-
(
|
103
|
+
(2, 2, '元気です')
|
104
104
|
|
105
105
|
;
|
106
106
|
|
@@ -124,7 +124,7 @@
|
|
124
124
|
|
125
125
|
INSERT INTO parent_relations
|
126
126
|
|
127
|
-
(`parent_tweet_id`, `tweet_id)
|
127
|
+
(`parent_tweet_id`, `tweet_id`)
|
128
128
|
|
129
129
|
VALUES
|
130
130
|
|