김대철
Showing 1 changed file with 12 additions and 0 deletions
...@@ -12,6 +12,18 @@ ...@@ -12,6 +12,18 @@
12 </code> 12 </code>
13 </pre> 13 </pre>
14 14
15 +> <pre><code>
16 +>CREATE TABLE COMMENT(
17 +>ID int(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
18 +>CAFE_ID int(10) NOT NULL
19 +>PRICE int(10) NOT NULL,
20 +>KINDNESS int(10) NOT NULL,
21 +>NOISE int(10) NOT NULL,
22 +>ACCESSIBILITY int(10) NOT NULL
23 +>);
24 +</code>
25 +</pre>
26 +
15 ###commit 형식 27 ###commit 형식
16 <pre><code> 28 <pre><code>
17 ##### 제목 - 50자 이내로 요약! 29 ##### 제목 - 50자 이내로 요약!
......