seanoh

Complete README

Showing 1 changed file with 23 additions and 26 deletions
...@@ -142,41 +142,38 @@ ...@@ -142,41 +142,38 @@
142 Query OK, 1 row affected, 1 warning (0.04 sec) 142 Query OK, 1 row affected, 1 warning (0.04 sec)
143 ``` 143 ```
144 * AWS 서버 설정 144 * AWS 서버 설정
145 - ```sh
146 -
147 - ```
148 145
149 ## DB Schema 146 ## DB Schema
150 > * users 사용자: utf-8 147 > * users 사용자: utf-8
151 148
152 - |Column|Type|Information| 149 +|Column|Type|Information|
153 - |---|---|---| 150 +|---|---|---|
154 - |id|int|key, 자동생성| 151 +|id|int|key, 자동생성|
155 - |name|string|User가 작성한 Id| 152 +|name|string|User가 작성한 Id|
156 - |pw|string|| 153 +|pw|string||
157 - |mbti|CHAR(4)|16가지중 1개만 저장| 154 +|mbti|CHAR(4)|16가지중 1개만 저장|
158 - |update|Bool|업데이트 여부(새 고민도착, 새 댓글 도착 여부)| 155 +|update|Bool|업데이트 여부(새 고민도착, 새 댓글 도착 여부)|
159 156
160 > * posts 게시글: utf-8 157 > * posts 게시글: utf-8
161 158
162 - |Column|Type|Information| 159 +|Column|Type|Information|
163 - |---|---|---| 160 +|---|---|---|
164 - |id|int|key, 자동생성| 161 +|id|int|key, 자동생성|
165 - |userid|string|foreign key (users.name) / 부모 삭제시 삭제| 162 +|userid|string|foreign key (users.name) / 부모 삭제시 삭제|
166 - |post|text|게시글| 163 +|post|text|게시글|
167 - |title|text|제목| 164 +|title|text|제목|
168 - |update|Bool|업데이트 여부(새 댓글 작성 여부)| 165 +|update|Bool|업데이트 여부(새 댓글 작성 여부)|
169 - |created_at|time|작성시간| 166 +|created_at|time|작성시간|
170 167
171 > * comment 댓글: utf-8 168 > * comment 댓글: utf-8
172 169
173 - |Column|Type|Information| 170 +|Column|Type|Information|
174 - |---|---|---| 171 +|---|---|---|
175 - |id|int|key, 자동생성| 172 +|id|int|key, 자동생성|
176 - |postid|int|| 173 +|postid|int||
177 - |userid|text|foreign key (users.id) / 부모 삭제시 삭제| 174 +|userid|text|foreign key (users.id) / 부모 삭제시 삭제|
178 - |comment|text|댓글 정보| 175 +|comment|text|댓글 정보|
179 - |created_at|time|작성시간| 176 +|created_at|time|작성시간|
180 177
181 <!-- USAGE EXAMPLES --> 178 <!-- USAGE EXAMPLES -->
182 ## Usage 179 ## Usage
...@@ -251,7 +248,7 @@ Distributed under the [MIT License](License). ...@@ -251,7 +248,7 @@ Distributed under the [MIT License](License).
251 248
252 > - 오인제 (seanoh@khu.ac.kr) 249 > - 오인제 (seanoh@khu.ac.kr)
253 > - 정의왕 (wang323@khu.ac.kr) 250 > - 정의왕 (wang323@khu.ac.kr)
254 -> - 고병후 (gobyeonghu@ khu.ac.kr) 251 +> - 고병후 (gobyeonghu@khu.ac.kr)
255 252
256 Project Link: [http://khuhub.khu.ac.kr/2019102198/Tunnel.git](http://khuhub.khu.ac.kr/2019102198/Tunnel.git) 253 Project Link: [http://khuhub.khu.ac.kr/2019102198/Tunnel.git](http://khuhub.khu.ac.kr/2019102198/Tunnel.git)
257 254
......